Spread for ASP.NET 7.0 Product Documentation
ItemDisabledBackColor Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > ContextMenuStyle Class : ItemDisabledBackColor Property


Glossary Item Box

Gets or sets the backcolor of the disabled item.

Syntax

Visual Basic (Declaration) 
Public Property ItemDisabledBackColor As Color
Visual Basic (Usage)Copy Code
Dim instance As ContextMenuStyle
Dim value As Color
 
instance.ItemDisabledBackColor = value
 
value = instance.ItemDisabledBackColor
C# 
public Color ItemDisabledBackColor {get; set;}

Property Value

The backcolor.

Example

This example sets the ItemDisabledBackColor property.
C#Copy Code
FarPoint.Web.Spread.ContextMenuStyle stylem = new FarPoint.Web.Spread.ContextMenuStyle();
stylem.BackColor = System.Drawing.Color.Aqua;
stylem.ItemBackColor = System.Drawing.Color.Beige;
stylem.ItemDisabledForeColor = System.Drawing.Color.Red;
stylem.ItemDisabledBackColor = System.Drawing.Color.Green;
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;
rowHeaderItem.ChildItems[1].Enabled = false;
rowHeaderContextMenu.Items.Add(rowHeaderItem);
FpSpread1.ContextMenus.Add(rowHeaderContextMenu); 
VB.NETCopy Code
Dim stylem As New FarPoint.Web.Spread.ContextMenuStyle()
stylem.BackColor = System.Drawing.Color.Aqua
stylem.ItemBackColor = System.Drawing.Color.Beige
stylem.ItemDisabledForeColor = System.Drawing.Color.Red
stylem.ItemDisabledBackColor = System.Drawing.Color.Green
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
rowHeaderItem.ChildItems(1).Enabled = False
rowHeaderContextMenu.Items.Add(rowHeaderItem)
FpSpread1.ContextMenus.Add(rowHeaderContextMenu)

Requirements

Target Platforms: Windows 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.