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

Sort() public method

Sorts the last sorted column opposite to its current sort order, or sorts the currently focused column in ascending order if no columns have been sorted
public Sort ( ) : void
return void
        public void Sort()
        {
            this.Sort(true);
        }

Same methods

Table::Sort ( bool stable ) : void
Table::Sort ( int column ) : 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