Spread Windows Forms 15.0
FarPoint.Win.Spread Assembly / FarPoint.Win.Spread Namespace / SheetView Class / AutoSortColumn Method / AutoSortColumn(Int32,Boolean,Boolean) Method
Column index
Whether sort is ascending (or else descending)
Whether to display the sort indicator


In This Topic
    AutoSortColumn(Int32,Boolean,Boolean) Method
    In This Topic
    Automatically sorts the rows of a sheet according to the specified column in the specified order and uses the sort indicator as specified.
    Syntax
    'Declaration
     
    
    Public Overloads Sub AutoSortColumn( _
       ByVal column As Integer, _
       ByVal ascending As Boolean, _
       ByVal showIndicator As Boolean _
    ) 
    'Usage
     
    
    Dim instance As SheetView
    Dim column As Integer
    Dim ascending As Boolean
    Dim showIndicator As Boolean
     
    instance.AutoSortColumn(column, ascending, showIndicator)
    public void AutoSortColumn( 
       int column,
       bool ascending,
       bool showIndicator
    )

    Parameters

    column
    Column index
    ascending
    Whether sort is ascending (or else descending)
    showIndicator
    Whether to display the sort indicator
    See Also