Spread ASP.NET 6.0 Product Documentation
Height Property
See Also  Example Send Feedback
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > TitleInfo Class : Height Property


Glossary Item Box

Gets or sets the height of title bar.

Syntax

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

Property Value

Unit object containing the height of the title bar

Remarks

The actual height of the title is max(Height, height_of_font in browser).

Example

This example sets the title info for the first sheet.
C#Copy Code
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;
Visual BasicCopy Code
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

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, Windows Vista, Windows Server 2008 family

See Also

© 2002-2012 GrapeCity, Inc. All Rights Reserved.