Spread Windows Forms 12.0 Product Documentation
HeaderAutoText Enumeration
Example Example 


FarPoint.Win.Spread Assembly > FarPoint.Win.Spread Namespace : HeaderAutoText Enumeration
Specifies the default labels to display in headers.
Syntax
'Declaration
 
Public Enum HeaderAutoText 
   Inherits System.Enum
'Usage
 
Dim instance As HeaderAutoText
public enum HeaderAutoText : System.Enum 
Members
MemberDescription
Blank[0] Displays blanks in the headers
Letters[2] Displays letters in the headers
Numbers[1] Displays numbers in the headers
Example
fpSpread1.ActiveSheet.ColumnHeader.RowCount = 3;
fpSpread1.ActiveSheet.RowHeader.ColumnCount = 2;
fpSpread1.ActiveSheet.ColumnHeaderAutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers;
fpSpread1.ActiveSheet.ColumnHeaderAutoTextIndex = 0;
fpSpread1.ActiveSheet.RowHeaderAutoText = FarPoint.Win.Spread.HeaderAutoText.Letters;
fpSpread1.ActiveSheet.RowHeaderAutoTextIndex = 0;
FpSpread1.ActiveSheet.ColumnHeader.RowCount = 3
FpSpread1.ActiveSheet.RowHeader.ColumnCount = 2
FpSpread1.ActiveSheet.ColumnHeaderAutoText = FarPoint.Win.Spread.HeaderAutoText.Numbers
FpSpread1.ActiveSheet.ColumnHeaderAutoTextIndex = 0
FpSpread1.ActiveSheet.RowHeaderAutoText = FarPoint.Win.Spread.HeaderAutoText.Letters
FpSpread1.ActiveSheet.RowHeaderAutoTextIndex = 0
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         FarPoint.Win.Spread.HeaderAutoText

See Also

Reference

FarPoint.Win.Spread Namespace
RowHeaderAutoText Property (SheetView Class)
ColumnHeaderAutoText Property
AutoText Property (RowHeader Class)
AutoText Property (ColumnHeader Class)

User-Task Documentation

Customizing the Default Header Labels