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


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

Syntax

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

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

/** property */
public void set_ContextMenuEditCommandName(string value);
JScript
public function get ContextMenuEditCommandName() : String

public function set ContextMenuEditCommandName(value : String);

Property Value

The name of the context menu edit command.

See Also