Gets or sets the name of the context menu delete command.


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

Syntax

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

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

/** property */
public void set_ContextMenuDeleteCommandName(string value);
JScript
public function get ContextMenuDeleteCommandName() : String

public function set ContextMenuDeleteCommandName(value : String);

Property Value

The name of the context menu delete command.

See Also