Spread Windows Forms 13.0 Product Documentation
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / HeaderAutoText Enumeration
Example Example


In This Topic
    HeaderAutoText Enumeration
    In This Topic
    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