Spread for ASP.NET 11 Product Documentation
Font Property (TitleInfo)
Example 


FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > TitleInfo Class : Font Property
Gets or sets the font settings of the title bar.
Syntax
'Declaration
 
Public Property Font As FontInfo
'Usage
 
Dim instance As TitleInfo
Dim value As FontInfo
 
instance.Font = value
 
value = instance.Font
public FontInfo Font {get; set;}

Property Value

FontInfo object containing the font settings of the text of the title bar
Example
This example sets the title info for the first sheet.
FpSpread1.Sheets[0].TitleInfo.Text = "This is sheet 1";
FpSpread1.Sheets[0].TitleInfo.Background.BackGroundImageUrl = FarPoint.Web.Spread.Background.DEFAULTGRADIENTMASKIMAGE;
FpSpread1.Sheets[0].TitleInfo.BackColor = Drawing.Color.Coral;
FpSpread1.Sheets[0].TitleInfo.Border = new FarPoint.Web.Spread.Border(System.Web.UI.WebControls.BorderStyle.Double, Drawing.Color.DarkKhaki, 2);
FpSpread1.Sheets[0].TitleInfo.CellType = new FarPoint.Web.Spread.GeneralCellType();
FpSpread1.Sheets[0].TitleInfo.Font.Bold = true;
FpSpread1.Sheets[0].TitleInfo.ForeColor = Drawing.Color.DarkKhaki;
FpSpread1.Sheets[0].TitleInfo.Height = 20;
FpSpread1.Sheets[0].TitleInfo.HorizontalAlign = HorizontalAlign.Center;
FpSpread1.Sheets[0].TitleInfo.Margin = new FarPoint.Web.Spread.Inset(10, 10, 10, 10);
FpSpread1.Sheets[0].TitleInfo.VerticalAlign = VerticalAlign.Middle;
FpSpread1.Sheets(0).TitleInfo.Text = "This is sheet 1"
FpSpread1.Sheets(0).TitleInfo.Background.BackGroundImageUrl = FarPoint.Web.Spread.Background.DEFAULTGRADIENTMASKIMAGE
FpSpread1.Sheets(0).TitleInfo.BackColor = Drawing.Color.Coral
FpSpread1.Sheets(0).TitleInfo.Border = New FarPoint.Web.Spread.Border(System.Web.UI.WebControls.BorderStyle.Double, Drawing.Color.DarkKhaki, 2)
FpSpread1.Sheets(0).TitleInfo.CellType = New FarPoint.Web.Spread.GeneralCellType
FpSpread1.Sheets(0).TitleInfo.Font.Bold = True
FpSpread1.Sheets(0).TitleInfo.ForeColor = Drawing.Color.DarkKhaki
FpSpread1.Sheets(0).TitleInfo.Height = 20
FpSpread1.Sheets(0).TitleInfo.HorizontalAlign = HorizontalAlign.Center
FpSpread1.Sheets(0).TitleInfo.Margin = New FarPoint.Web.Spread.Inset(10, 10, 10, 10)
FpSpread1.Sheets(0).TitleInfo.VerticalAlign = VerticalAlign.Middle
See Also

Reference

TitleInfo Class
TitleInfo Members