Gets or sets the base path. The base path is the folder which contains the astreeview client side stuff.


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

Syntax

Visual Basic (Declaration)
<CategoryAttribute("Configuration"), _
 DefaultValueAttribute("~/javascript/astreeview/"), _
 BrowsableAttribute(True)>

Public Overridable Property BasePath As String
C#
[CategoryAttribute("Configuration")]
[DefaultValueAttribute("~/javascript/astreeview/")]
[BrowsableAttribute(True)]
public virtual string BasePath { get; set; }
C++
[CategoryAttribute(L"Configuration")]
[DefaultValueAttribute(L"~/javascript/astreeview/")]
[BrowsableAttribute(True)]
public virtual property string BasePath {
    String get();
    void set(String value);
}
J#
/** @attribute CategoryAttribute("Configuration") */
/** @attribute DefaultValueAttribute("~/javascript/astreeview/") */
/** @attribute BrowsableAttribute(True) */
/** property */
public string get_BasePath();

/** property */
public void set_BasePath(string value);
JScript
public function get BasePath() : String

public function set BasePath(value : String);

Property Value

The base path.

See Also