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