Gets or sets the CSS class of checkbox.


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

Syntax

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

Public Property CssClassCheckbox As String
C#
[CategoryAttribute("Checkbox")]
[BrowsableAttribute(True)]
[DefaultValueAttribute("astreeview-checkbox")]
public string CssClassCheckbox { get; set; }
C++
[CategoryAttribute(L"Checkbox")]
[BrowsableAttribute(True)]
[DefaultValueAttribute(L"astreeview-checkbox")]
public property string CssClassCheckbox sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute CategoryAttribute("Checkbox") */
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute("astreeview-checkbox") */
/** property */
public string get_CssClassCheckbox();

/** property */
public void set_CssClassCheckbox(string value);
JScript
public function get CssClassCheckbox() : String

public function set CssClassCheckbox(value : String);

Property Value

The CSS class checkbox.

See Also