Gets or sets the add node default value.


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

Syntax

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

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

/** property */
public void set_AddNodePromptDefaultValue(string value);
JScript
public function get AddNodePromptDefaultValue() : String

public function set AddNodePromptDefaultValue(value : String);

Property Value

The add node default value of adding a new node.

See Also