Gets or sets a value indicating whether to use the customized node icons.


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

Syntax

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

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

/** property */
public void set_EnableCustomizedNodeIcon(bool value);
JScript
public function get EnableCustomizedNodeIcon() : bool

public function set EnableCustomizedNodeIcon(value : bool);

Property Value

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

See Also