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 ( OLVColumn columnToSort ) : void
columnToSort OLVColumn The column whose values will be used for the sorting
return void
        public virtual void Sort(OLVColumn columnToSort)
        {
            if (this.InvokeRequired) {
                this.Invoke((MethodInvoker)delegate { this.Sort(columnToSort); });
            } else {
                this.Sort(columnToSort, this.LastSortOrder);
            }
        }

Same methods

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