Gets or sets the add node prompt message.


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

Syntax

Visual Basic (Declaration)
<DefaultValueAttribute("Please enter name for the new node."), _
 BrowsableAttribute(True), _
 CategoryAttribute("Ajax")>

Public Property AddNodePromptMessage As String
C#
[DefaultValueAttribute("Please enter name for the new node.")]
[BrowsableAttribute(True)]
[CategoryAttribute("Ajax")]
public string AddNodePromptMessage { get; set; }
C++
[DefaultValueAttribute(L"Please enter name for the new node.")]
[BrowsableAttribute(True)]
[CategoryAttribute(L"Ajax")]
public property string AddNodePromptMessage sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute DefaultValueAttribute("Please enter name for the new node.") */
/** @attribute BrowsableAttribute(True) */
/** @attribute CategoryAttribute("Ajax") */
/** property */
public string get_AddNodePromptMessage();

/** property */
public void set_AddNodePromptMessage(string value);
JScript
public function get AddNodePromptMessage() : String

public function set AddNodePromptMessage(value : String);

Property Value

The add node prompt message.

See Also