Gets or sets the CSS class for bottom line.


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

Syntax

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

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

/** property */
public void set_CssClassLineBottom(string value);
JScript
public function get CssClassLineBottom() : String

public function set CssClassLineBottom(value : String);

Property Value

The CSS class line bottom.

See Also