Gets or sets a value indicating whether this ASTreeViewNode is selected.


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

Syntax

Visual Basic (Declaration)
Public Property Selected As Boolean
C#
public bool Selected { get; set; }
C++
public property bool Selected sealed  {
    bool get();
    void set(bool value);
}
J#
/** property */
public bool get_Selected();

/** property */
public void set_Selected(bool value);
JScript
public function get Selected() : bool

public function set Selected(value : bool);

Property Value

true if selected; otherwise, false.

See Also