XPTable.Models.Table.Sort C# (CSharp) Method

Sort() public method

Sorts the specified column opposite to its current sort order, or in ascending order if the column is not sorted
public Sort ( int column ) : void
column int The index of the column to sort
return void
        public void Sort(int column)
        {
            this.Sort(column, true);
        }

Same methods

Table::Sort ( ) : void
Table::Sort ( bool stable ) : void
Table::Sort ( int index, Column column, SortOrder sortOrder, bool stable ) : void
Table::Sort ( int column, SortOrder sortOrder ) : void
Table::Sort ( int column, SortOrder sortOrder, bool stable ) : void
Table::Sort ( int column, bool stable ) : void
Table