Gets or sets a value indicating whether to display a node as the root root node of the tree.


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

Syntax

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

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

/** property */
public void set_EnableRoot(bool value);
JScript
public function get EnableRoot() : bool

public function set EnableRoot(value : bool);

Property Value

true if [enable root]; otherwise, false.

See Also