Gets or sets a value indicating whether to enable leaf only checkbox.


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

Syntax

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

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

/** property */
public void set_EnableLeafOnlyCheckbox(bool value);
JScript
public function get EnableLeafOnlyCheckbox() : bool

public function set EnableLeafOnlyCheckbox(value : bool);

Property Value

true if [enable leaf only checkbox]; otherwise, false.

See Also