Gets or sets a value indicating whether to use theme.


Namespace: Geekees.Common.Controls
Assembly: ASTreeView (in ASTreeView.dll)

Syntax

Visual Basic (Declaration)
<CategoryAttribute("Theme"), _
 BrowsableAttribute(True), _
 DefaultValueAttribute(True)>

Public Property EnableTheme As Boolean
C#
[CategoryAttribute("Theme")]
[BrowsableAttribute(True)]
[DefaultValueAttribute(True)]
public bool EnableTheme { get; set; }
C++
[CategoryAttribute(L"Theme")]
[BrowsableAttribute(True)]
[DefaultValueAttribute(True)]
public property bool EnableTheme sealed  {
    bool get();
    void set(bool value);
}
J#
/** @attribute CategoryAttribute("Theme") */
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute(True) */
/** property */
public bool get_EnableTheme();

/** property */
public void set_EnableTheme(bool value);
JScript
public function get EnableTheme() : bool

public function set EnableTheme(value : bool);

Property Value

true if [enable theme]; otherwise, false.

See Also