Spread for ASP.NET 9.0 Product Documentation
Border Property (ContextMenuStyle)
Example 


Gets or sets the context menu border.
Syntax
'Declaration
 
Public Property Border As Border
'Usage
 
Dim instance As ContextMenuStyle
Dim value As Border
 
instance.Border = value
 
value = instance.Border
public Border Border {get; set;}
Example
Press the right mouse button over the row header to see the context menu.
FarPoint.Web.Spread.ContextMenuStyle stylem = new FarPoint.Web.Spread.ContextMenuStyle();
stylem.Border = new FarPoint.Web.Spread.Border(System.Drawing.Color.Crimson);
FpSpread1.ActiveSheetView.ContextMenuStyle = stylem;
FpSpread1.EnableContextMenu = true;
FarPoint.Web.Spread.ContextMenu rowHeaderContextMenu = new FarPoint.Web.Spread.ContextMenu();
rowHeaderContextMenu.Type = FarPoint.Web.Spread.ContextMenuType.RowHeader;
FarPoint.Web.Spread.MenuItem rowHeaderItem = new FarPoint.Web.Spread.MenuItem("RowHeader item 1");
rowHeaderItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem("Child item 1"));
rowHeaderItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem("Child item 2"));
rowHeaderItem.ChildItems[1].Visible = true;
rowHeaderContextMenu.Items.Add(rowHeaderItem);
FpSpread1.ContextMenus.Add(rowHeaderContextMenu);
Dim stylem As New FarPoint.Web.Spread.ContextMenuStyle()
stylem.Border = New FarPoint.Web.Spread.Border(System.Drawing.Color.Crimson)
FpSpread1.ActiveSheetView.ContextMenuStyle = stylem
FpSpread1.EnableContextMenu = True
'If the RowHeader context menu has not been added, add it here 
Dim rowHeaderContextMenu As New FarPoint.Web.Spread.ContextMenu()
rowHeaderContextMenu.Type = FarPoint.Web.Spread.ContextMenuType.RowHeader
Dim rowHeaderItem As New FarPoint.Web.Spread.MenuItem("RowHeader item 1")
rowHeaderItem.ChildItems.Add(New FarPoint.Web.Spread.MenuItem("Child item 1"))
rowHeaderItem.ChildItems.Add(New FarPoint.Web.Spread.MenuItem("Child item 2"))
rowHeaderItem.ChildItems(1).Visible = True
rowHeaderContextMenu.Items.Add(rowHeaderItem)
FpSpread1.ContextMenus.Add(rowHeaderContextMenu)
Requirements

Target Platforms: Windows 7, Windows 8, Windows 10, Windows Vista, Windows Server 2003, Windows Server 2008, Windows Server 2012, Windows XP Professional

See Also

Reference

ContextMenuStyle Class
ContextMenuStyle Members

 

 


Copyright © GrapeCity, inc. All rights reserved.