BrightIdeasSoftware.ObjectListView.Unsort C# (CSharp) Method

Unsort() public method

Remove any sorting and revert to the given order of the model objects
public Unsort ( ) : void
return void
        public virtual void Unsort()
        {
            this.ShowGroups = false;
            this.PrimarySortColumn = null;
            this.PrimarySortOrder = SortOrder.None;
            this.BuildList();
        }
ObjectListView