XPTable.Models.Table.OnEndSort C# (CSharp) Method

OnEndSort() protected method

Raises the EndSort event
protected OnEndSort ( ColumnEventArgs e ) : void
e ColumnEventArgs A ColumnEventArgs that contains the event data
return void
        protected virtual void OnEndSort(ColumnEventArgs e)
        {
            if (EndSort != null)
            {
                EndSort(this, e);
            }
        }
Table