Spread for ASP.NET 7.0 Product Documentation
AutoText Property
See Also  Example Support Options
FarPoint.Web.Spread Assembly > FarPoint.Web.Spread Namespace > ColumnHeader Class : AutoText Property


Glossary Item Box

Gets or sets whether the column header displays letters or numbers or is blank.

Syntax

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

Property Value

HeaderAutoText setting

Remarks

If your component displays multiple column headers, set the AutoTextIndex property to specify which column header row contains the automatic text.

This property does not have an effect unless the Visible property is set to true. If the component displays multiple column headers, this property does not have an effect if the row displaying the automatic text (specified by the AutoText property) is hidden.

Use the RowHeader object's AutoText property to specify whether the row headers display letters, numbers, or are blank.

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 BasicCopy 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 7, Windows 8, Windows Vista, Windows Server 2000, Windows 2000 Professional, Windows XP Professional, Windows NT 4.0 Workstation, SP6, Windows NT 4.0 Server, SP6

See Also

© 2002-2014 ComponentOne, a division of GrapeCity. All Rights Reserved.