BrightIdeasSoftware.ObjectListView.Sort C# (CSharp) Method

Sort() public method

Sort the items in the list view by the values in the given column and the last sort order
public Sort ( int columnToSortIndex ) : void
columnToSortIndex int The index of the column whose values will be used for the sorting
return void
        public virtual void Sort(int columnToSortIndex)
        {
            if (columnToSortIndex >= 0 && columnToSortIndex < this.Columns.Count)
                this.Sort(this.GetColumn(columnToSortIndex), this.LastSortOrder);
        }

Same methods

ObjectListView::Sort ( ) : void
ObjectListView::Sort ( OLVColumn columnToSort ) : void
ObjectListView::Sort ( OLVColumn columnToSort, SortOrder order ) : void
ObjectListView::Sort ( string columnToSortName ) : void
ObjectListView