Gets or sets the delete node prompt message.


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

Syntax

Visual Basic (Declaration)
<DefaultValueAttribute("Are you sure to delete {0}?"), _
 CategoryAttribute("Ajax"), _
 BrowsableAttribute(True)>

Public Property DeleteNodePromptMessage As String
C#
[DefaultValueAttribute("Are you sure to delete {0}?")]
[CategoryAttribute("Ajax")]
[BrowsableAttribute(True)]
public string DeleteNodePromptMessage { get; set; }
C++
[DefaultValueAttribute(L"Are you sure to delete {0}?")]
[CategoryAttribute(L"Ajax")]
[BrowsableAttribute(True)]
public property string DeleteNodePromptMessage sealed  {
    String get();
    void set(String value);
}
J#
/** @attribute DefaultValueAttribute("Are you sure to delete {0}?") */
/** @attribute CategoryAttribute("Ajax") */
/** @attribute BrowsableAttribute(True) */
/** property */
public string get_DeleteNodePromptMessage();

/** property */
public void set_DeleteNodePromptMessage(string value);
JScript
public function get DeleteNodePromptMessage() : String

public function set DeleteNodePromptMessage(value : String);

Property Value

The delete node prompt message.

See Also