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


Glossary Item Box

Gets or sets the font information of the context menu item.

Syntax

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

Property Value

The font info of the context menu item.

Example

This example uses the ItemFont property.
C#Copy Code
protected void Page_Load(object sender, EventArgs e)
        {
            if (IsPostBack) return;
            FpSpread1.ActiveSheetView.ContextMenuStyle.ItemHoverBackColor = System.Drawing.Color.FromArgb(88, 149, 77);
            FpSpread1.ActiveSheetView.ContextMenuStyle.Seperator = new FarPoint.Web.Spread.Border(BorderStyle.Dotted, System.Drawing.Color.Red, 2);
            FpSpread1.ActiveSheetView.ContextMenuStyle.ItemHoverBorder = new FarPoint.Web.Spread.Border(BorderStyle.Dashed, System.Drawing.Color.Aqua, 2);
            FpSpread1.ActiveSheetView.ContextMenuStyle.ItemFont.Bold = true;            
            FarPoint.Web.Spread.ContextMenu viewportMenu = new FarPoint.Web.Spread.ContextMenu();
            viewportMenu.Type = FarPoint.Web.Spread.ContextMenuType.Viewport;
            FarPoint.Web.Spread.MenuItem customViewportItem = new FarPoint.Web.Spread.MenuItem("Viewport item 1");
            customViewportItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem(" First Item"));
            customViewportItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem("-"));
            customViewportItem.ChildItems.Add(new FarPoint.Web.Spread.MenuItem(" Second Item"));
            viewportMenu.Items.Add(customViewportItem);
            FpSpread1.EnableContextMenu = true;
            FpSpread1.ContextMenus.Add(viewportMenu);
        }
VB.NETCopy Code
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If (IsPostBack) Then
            Return
        End If        
        FpSpread1.ActiveSheetView.ContextMenuStyle.ItemHoverBackColor = System.Drawing.Color.FromArgb(88, 149, 77)
        FpSpread1.ActiveSheetView.ContextMenuStyle.Seperator = New FarPoint.Web.Spread.Border(BorderStyle.Dotted, System.Drawing.Color.Red, 2)
        FpSpread1.ActiveSheetView.ContextMenuStyle.ItemHoverBorder = New FarPoint.Web.Spread.Border(BorderStyle.Dashed, System.Drawing.Color.Aqua, 2)
        FpSpread1.ActiveSheetView.ContextMenuStyle.ItemFont.Bold = True
        Dim viewportMenu As New FarPoint.Web.Spread.ContextMenu()
        viewportMenu.Type = FarPoint.Web.Spread.ContextMenuType.Viewport
        Dim customViewportItem As New FarPoint.Web.Spread.MenuItem("Viewport item 1")
        customViewportItem.ChildItems.Add(New FarPoint.Web.Spread.MenuItem(" First Item"))
        customViewportItem.ChildItems.Add(New FarPoint.Web.Spread.MenuItem("-"))
        customViewportItem.ChildItems.Add(New FarPoint.Web.Spread.MenuItem(" Second Item"))
        viewportMenu.Items.Add(customViewportItem)
        FpSpread1.EnableContextMenu = True
        FpSpread1.ContextMenus.Add(viewportMenu)
End Sub

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.