Gets or sets the ContextMenuStrip associated with this editor. If you want not to set any ContextMenuStript, the default contextmenustrip will be shown. If you do not want to show the default ContextMenu, you can set ShowDefaultContextMenu = false.


Namespace: SpiceLogic.WinHTMLEditor
Assembly: WinHTMLEditorControl (in WinHTMLEditorControl.dll)

Syntax

Visual Basic (Declaration)
Public Property EditorContextMenuStrip As ContextMenuStrip
C#
public ContextMenuStrip EditorContextMenuStrip { get; set; }
C++
public property ContextMenuStrip EditorContextMenuStrip sealed  {
    ContextMenuStrip get();
    void set(ContextMenuStrip value);
}
J#
/** property */
public ContextMenuStrip get_EditorContextMenuStrip();

/** property */
public void set_EditorContextMenuStrip(ContextMenuStrip value);
JScript
public function get EditorContextMenuStrip() : ContextMenuStrip

public function set EditorContextMenuStrip(value : ContextMenuStrip);

Property Value

The ContextMenuStrip for this editor, or null if there is no ContextMenuStrip. The default is null.

See Also