Gets or sets a value indicating whether to display node icons.


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

Syntax

Visual Basic (Declaration)
<BrowsableAttribute(True), _
 DefaultValueAttribute(True), _
 CategoryAttribute("Node Icon")>

Public Property EnableNodeIcon As Boolean
C#
[BrowsableAttribute(True)]
[DefaultValueAttribute(True)]
[CategoryAttribute("Node Icon")]
public bool EnableNodeIcon { get; set; }
C++
[BrowsableAttribute(True)]
[DefaultValueAttribute(True)]
[CategoryAttribute(L"Node Icon")]
public property bool EnableNodeIcon sealed  {
    bool get();
    void set(bool value);
}
J#
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute(True) */
/** @attribute CategoryAttribute("Node Icon") */
/** property */
public bool get_EnableNodeIcon();

/** property */
public void set_EnableNodeIcon(bool value);
JScript
public function get EnableNodeIcon() : bool

public function set EnableNodeIcon(value : bool);

Property Value

true if [enable node icon]; otherwise, false.

See Also