Spread Windows Forms 17
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / SetColumnShowSortIndicator Method / SetColumnShowSortIndicator(Int32,Int32,Boolean) Method
Column index of the first column
Number of columns to set
Whether to display the sort indicators in the column headers


In This Topic
    SetColumnShowSortIndicator(Int32,Int32,Boolean) Method
    In This Topic
    Sets whether the specified columns on this sheet should display a sort indicator when automatically sorted.
    Syntax
    'Declaration
     
    
    Public Overloads Sub SetColumnShowSortIndicator( _
       ByVal column As Integer, _
       ByVal count As Integer, _
       ByVal showIndicator As Boolean _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim column As Integer
    Dim count As Integer
    Dim showIndicator As Boolean
     
    instance.SetColumnShowSortIndicator(column, count, showIndicator)
    public void SetColumnShowSortIndicator( 
       int column,
       int count,
       bool showIndicator
    )

    Parameters

    column
    Column index of the first column
    count
    Number of columns to set
    showIndicator
    Whether to display the sort indicators in the column headers
    Exceptions
    ExceptionDescription
    Specified column index is out of range; must be between -1 and the total number of columns
    See Also