Gets or sets a value indicating whether the node is selectable.


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

Syntax

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

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

/** property */
public void set_EnableNodeSelection(bool value);
JScript
public function get EnableNodeSelection() : bool

public function set EnableNodeSelection(value : bool);

Property Value

true if [enable node selection]; otherwise, false.

See Also