Spread ASP.NET 17
FarPoint.Web.Spread Assembly / FarPoint.Web.Spread Namespace / SheetView Class / SortRows Method / SortRows(Int32,Boolean,Boolean) Method
Column whose values are compared during sorting
Whether the sort is ascending
Whether to display the sort indicator
Example


In This Topic
    SortRows(Int32,Boolean,Boolean) Method
    In This Topic
    Sorts all the rows in the sheet according to the specified parameters.
    Syntax
    'Declaration
     
    
    Public Overloads Function SortRows( _
       ByVal keyColumn As Integer, _
       ByVal ascending As Boolean, _
       ByVal showIndicator As Boolean _
    ) As Boolean
    'Usage
     
    
    Dim instance As SheetView
    Dim keyColumn As Integer
    Dim ascending As Boolean
    Dim showIndicator As Boolean
    Dim value As Boolean
     
    value = instance.SortRows(keyColumn, ascending, showIndicator)

    Parameters

    keyColumn
    Column whose values are compared during sorting
    ascending
    Whether the sort is ascending
    showIndicator
    Whether to display the sort indicator

    Return Value

    true if successful; otherwise false
    Remarks

    This is the simplest of the methods to sort rows. You need only specify the following:

    • the column to use as a key for sorting
    • whether the sort is ascending or descending
    • whether to show the sort indicator in the column header or not

    All the rows in the sheet are sorted.

    Example
    This example illustrates the use of this member by sorting the rows with the specified parameters.
    See Also