Gets or sets the CSS class for top line.


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

Syntax

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

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

/** property */
public void set_CssClassLineTop(string value);
JScript
public function get CssClassLineTop() : String

public function set CssClassLineTop(value : String);

Property Value

The CSS class line top.

See Also