BrightIdeasSoftware.ObjectListView.ShowSortIndicator C# (CSharp) Method

ShowSortIndicator() public method

Put a sort indicator next to the text of the sort column
public ShowSortIndicator ( ) : void
return void
        public virtual void ShowSortIndicator()
        {
            if (this.ShowSortIndicators && this.LastSortOrder != SortOrder.None)
                this.ShowSortIndicator(this.LastSortColumn, this.LastSortOrder);
        }

Same methods

ObjectListView::ShowSortIndicator ( OLVColumn columnToSort, SortOrder sortOrder ) : void
ObjectListView