Gets or sets a value indicating whether expand the node if click on it.


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

Syntax

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

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

/** property */
public void set_EnableParentNodeExpand(bool value);
JScript
public function get EnableParentNodeExpand() : bool

public function set EnableParentNodeExpand(value : bool);

Property Value

true if [enable parent node expand]; otherwise, false.

See Also