Gets or sets a value indicating whether [enable close on node selection].


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

Syntax

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

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

/** property */
public void set_EnableCloseOnNodeSelection(bool value);
JScript
public function get EnableCloseOnNodeSelection() : bool

public function set EnableCloseOnNodeSelection(value : bool);

Property Value

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

See Also