Gets or sets whether the column header displays letters or numbers or is blank.
Syntax
Remarks
Example
This example sets the column header to have three rows and to display the letters in the second of the three rows in the column header.
C# | Copy Code |
---|
FarPoint.Web.Spread.ColumnHeader colhdr;
colhdr = FpSpread1.ActiveSheetView.ColumnHeader;
colhdr.RowCount = 3; // column header has three rows
colhdr.AutoText = FarPoint.Web.Spread.HeaderAutoText.Letters; // column header displays letters
colhdr.AutoTextIndex = 1; // automatic text in second zero-index row |
Visual Basic | Copy Code |
---|
Dim colhdr As FarPoint.Web.Spread.ColumnHeader
colhdr = FpSpread1.ActiveSheetView.ColumnHeader
colhdr.RowCount = 3 ' column header has three rows
colhdr.AutoText = FarPoint.Web.Spread.HeaderAutoText.Letters ' column header displays letters
colhdr.AutoTextIndex = 1 ' automatic text in second zero-index row |
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