Gets or sets the delete node with sub prompt message.


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

Syntax

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

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

/** property */
public void set_DeleteNodeWithSubPromptMessage(string value);
JScript
public function get DeleteNodeWithSubPromptMessage() : String

public function set DeleteNodeWithSubPromptMessage(value : String);

Property Value

The delete node with sub prompt message.

See Also