Gets or sets the image path. The default value of ImagePath is BasePath + 'images/'


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

Syntax

Visual Basic (Declaration)
<BrowsableAttribute(True), _
 CategoryAttribute("Configuration")>

Public Property ImagePath As String
C#
[BrowsableAttribute(True)]
[CategoryAttribute("Configuration")]
public string ImagePath { get; set; }
C++
[BrowsableAttribute(True)]
[CategoryAttribute(L"Configuration")]
public property string ImagePath sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute BrowsableAttribute(True) */
/** @attribute CategoryAttribute("Configuration") */
/** property */
public string get_ImagePath();

/** property */
public void set_ImagePath(string value);
JScript
public function get ImagePath() : String

public function set ImagePath(value : String);

Property Value

The image path.

See Also