Gets or sets the CSS class for root line.


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

Syntax

Visual Basic (Declaration)
<BrowsableAttribute(True), _
 CategoryAttribute("Tree Lines"), _
 DefaultValueAttribute("line-root")>

Public Property CssClassLineRoot As String
C#
[BrowsableAttribute(True)]
[CategoryAttribute("Tree Lines")]
[DefaultValueAttribute("line-root")]
public string CssClassLineRoot { get; set; }
C++
[BrowsableAttribute(True)]
[CategoryAttribute(L"Tree Lines")]
[DefaultValueAttribute(L"line-root")]
public property string CssClassLineRoot sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute BrowsableAttribute(True) */
/** @attribute CategoryAttribute("Tree Lines") */
/** @attribute DefaultValueAttribute("line-root") */
/** property */
public string get_CssClassLineRoot();

/** property */
public void set_CssClassLineRoot(string value);
JScript
public function get CssClassLineRoot() : String

public function set CssClassLineRoot(value : String);

Property Value

The CSS class line root.

See Also