Gets or sets the default folder icon.


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

Syntax

Visual Basic (Declaration)
<BrowsableAttribute(True), _
 DefaultValueAttribute("astreeview-folder.gif"), _
 CategoryAttribute("Icon")>

Public Property DefaultFolderIcon As String
C#
[BrowsableAttribute(True)]
[DefaultValueAttribute("astreeview-folder.gif")]
[CategoryAttribute("Icon")]
public string DefaultFolderIcon { get; set; }
C++
[BrowsableAttribute(True)]
[DefaultValueAttribute(L"astreeview-folder.gif")]
[CategoryAttribute(L"Icon")]
public property string DefaultFolderIcon sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute BrowsableAttribute(True) */
/** @attribute DefaultValueAttribute("astreeview-folder.gif") */
/** @attribute CategoryAttribute("Icon") */
/** property */
public string get_DefaultFolderIcon();

/** property */
public void set_DefaultFolderIcon(string value);
JScript
public function get DefaultFolderIcon() : String

public function set DefaultFolderIcon(value : String);

Property Value

The default folder icon.

See Also