Gets or sets a value indicating whether to display check box.


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

Syntax

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

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

/** property */
public void set_EnableCheckbox(bool value);
JScript
public function get EnableCheckbox() : bool

public function set EnableCheckbox(value : bool);

Property Value

true if [enable checkbox]; otherwise, false.

See Also