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


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

Syntax

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

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

/** property */
public void set_ContextMenuAddCommandName(string value);
JScript
public function get ContextMenuAddCommandName() : String

public function set ContextMenuAddCommandName(value : String);

Property Value

The name of the context menu add command.

See Also