Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / ColumnHeader Class / AutoTextIndex Property
Example


In This Topic
    AutoTextIndex Property (ColumnHeader)
    In This Topic
    Gets or sets which column header row displays the automatic text when there are multiple column header rows.
    Syntax
    'Declaration
     
    
    Public Property AutoTextIndex As Integer
    'Usage
     
    
    Dim instance As ColumnHeader
    Dim value As Integer
     
    instance.AutoTextIndex = value
     
    value = instance.AutoTextIndex
    public int AutoTextIndex {get; set;}

    Property Value

    Integer number representing the zero-based row index
    Remarks

    If your header has multiple column header rows, you can specify which header row displays the automatic text by setting this property. To specify the index, set the property to a value between 0 and n-1, where 0 is the top row and n is the number of header rows. Any value above n-1 simply puts the automatic text in the bottom row.

    The automatic text is the text automatically assigned to header cells by Spread. By default, for columns the automatic text is letters. Use the AutoText property to change the automatic text to blank or to numbers. Use the AutoText property to specify what automatic text, if any, is displayed in the column headers. If you set the AutoText property to Blank, the column header row specified by the AutoTextIndex property is blank. Use the RowCount property  to specify how many column header rows the component displays. Use the RowHeader object AutoTextIndex property to specify which row header column displays the automatic text.

    For best results set the RowCount property before setting the AutoFilterIndex property.

    This property does not have an effect unless the Visible property (or the SheetView ColumnHeaderVisible property) is set to true and the column header rows are not hidden.

    For more information about automatic text, see Customizing the Default Header Labels.

    Example
    See Also