Spread Windows Forms 12.0 Product Documentation
ContextMenu Property (SuperEditBase)
Example 


FarPoint.Win Assembly > FarPoint.Win Namespace > SuperEditBase Class : ContextMenu Property
Gets or sets the context menu to display for the control.
Syntax
'Declaration
 
Public Overrides Property ContextMenu As ContextMenu
'Usage
 
Dim instance As SuperEditBase
Dim value As ContextMenu
 
instance.ContextMenu = value
 
value = instance.ContextMenu
public override ContextMenu ContextMenu {get; set;}

Property Value

ContextMenu object containing the context menu for the edit control
Remarks

The context menu is the pop-up menu displayed when the user right-clicks the edit control. If you want to provide a basic pop-up menu with edit commands, set the AutoMenu property to true. If you want to provide a custom pop-up menu, use this property.

Example
private System.Windows.Forms.MenuItem mitem1;
private System.Windows.Forms.MenuItem mitem2;
private System.Windows.Forms.MenuItem mitem3;
private System.Windows.Forms.ContextMenu cmenu;
this.mitem1 = new System.Windows.Forms.MenuItem("Change");
this.mitem2 = new System.Windows.Forms.MenuItem("Edit");
this.mitem3 = new System.Windows.Forms.MenuItem("Delete");
this.cmenu = new System.Windows.Forms.ContextMenu();
this.cmenu.MenuItems.AddRange(new System.Windows.Forms.MenuItem[3]{mitem1,mitem2,mitem3});
control.AutoMenu = true;
control.ContextMenu = cmenu;
Dim mitem1 As New MenuItem("Change")
Dim mitem2 As New MenuItem("Edit")
Dim mitem3 As New MenuItem("Delete")
Dim cmenu As New ContextMenu()
cmenu.MenuItems.Add(mitem1)
cmenu.MenuItems.Add(mitem2)
cmenu.MenuItems.Add(mitem3)
control.AutoMenu = True
control.ContextMenu = cmenu
See Also

Reference

SuperEditBase Class
SuperEditBase Members
AutoMenu Property