Gets or sets the Cascading Style Sheet (CSS) class rendered by the Web server control on the client.


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

Syntax

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

Public Overrides Property CssClass As String
C#
[BrowsableAttribute(True)]
[DefaultValueAttribute("astreeview-tree")]
[CategoryAttribute("Appearance")]
public override string CssClass { get; set; }
C++
[BrowsableAttribute(True)]
[DefaultValueAttribute(L"astreeview-tree")]
[CategoryAttribute(L"Appearance")]
public override property string CssClass override  {
    String get();
    void set(String value);
}
J#
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute("astreeview-tree") */
/** @attribute CategoryAttribute("Appearance") */
/** property */
public string get_CssClass();

/** property */
public void set_CssClass(string value);
JScript
public function get CssClass() : String

public function set CssClass(value : String);

Property Value

The CSS class rendered by the Web server control on the client. The default is Empty.

See Also