Gets or sets a value indicating whether tree lines.


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

Syntax

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

Public Property EnableTreeLines As Boolean
C#
[DefaultValueAttribute(False)]
[BrowsableAttribute(True)]
[CategoryAttribute("Tree Lines")]
public bool EnableTreeLines { get; set; }
C++
[DefaultValueAttribute(False)]
[BrowsableAttribute(True)]
[CategoryAttribute(L"Tree Lines")]
public property bool EnableTreeLines sealed  {
    bool get();
    void set(bool value);
}
J#
/** @attribute DefaultValueAttribute(False) */
/** @attribute BrowsableAttribute(True) */
/** @attribute CategoryAttribute("Tree Lines") */
/** property */
public bool get_EnableTreeLines();

/** property */
public void set_EnableTreeLines(bool value);
JScript
public function get EnableTreeLines() : bool

public function set EnableTreeLines(value : bool);

Property Value

true if [enable tree lines]; otherwise, false.

See Also