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 ( string columnToSortName ) : void
columnToSortName string The name of the column whose values will be used for the sorting
return void
        public virtual void Sort(string columnToSortName)
        {
            this.Sort(this.GetColumn(columnToSortName), this.LastSortOrder);
        }

Same methods

ObjectListView::Sort ( ) : void
ObjectListView::Sort ( OLVColumn columnToSort ) : void
ObjectListView::Sort ( OLVColumn columnToSort, SortOrder order ) : void
ObjectListView::Sort ( int columnToSortIndex ) : void
ObjectListView