Gets or sets the expand depth of the treeview.


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

Syntax

Visual Basic (Declaration)
<CategoryAttribute("ExpandDepth"), _
 DefaultValueAttribute(-1), _
 BrowsableAttribute(True)>

Public Property ExpandDepth As Integer
C#
[CategoryAttribute("ExpandDepth")]
[DefaultValueAttribute(-1)]
[BrowsableAttribute(True)]
public int ExpandDepth { get; set; }
C++
[CategoryAttribute(L"ExpandDepth")]
[DefaultValueAttribute(-1)]
[BrowsableAttribute(True)]
public property int ExpandDepth sealed  {
    int get();
    void set(int value);
}
J#
/** @attribute CategoryAttribute("ExpandDepth") */
/** @attribute DefaultValueAttribute(-1) */
/** @attribute BrowsableAttribute(True) */
/** property */
public int get_ExpandDepth();

/** property */
public void set_ExpandDepth(int value);
JScript
public function get ExpandDepth() : int

public function set ExpandDepth(value : int);

Property Value

The expand depth.

See Also