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


Glossary Item Box

Gets or sets the vertical alignment of the title bar.

Syntax

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

Property Value

VerticalAlign setting of the vertical aligment of the title bar

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.