Gets or sets the context menu delete text.


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

Syntax

Visual Basic (Declaration)
<CategoryAttribute("Context Menu"), _
 BrowsableAttribute(True), _
 DefaultValueAttribute("Delete")>

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

/** property */
public void set_ContextMenuDeleteText(string value);
JScript
public function get ContextMenuDeleteText() : String

public function set ContextMenuDeleteText(value : String);

Property Value

The context menu delete text.

See Also