Class SortChangedEventArgs
Represents event arguments when the sort order is changed.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class SortChangedEventArgs : EventArgs
Constructors
SortChangedEventArgs(SortChangeType)
Initializes a new instance of the SortChangedEventArgs class.
Declaration
public SortChangedEventArgs(SortChangeType sortChangedType)
Parameters
SortChangeType
sortChangedType
Type of the sort changed. |
SortChangedEventArgs(SortChangeType, GridSortField)
Initializes a new instance of the SortChangedEventArgs class.
Declaration
public SortChangedEventArgs(SortChangeType sortChangedType, GridSortField sortExpression)
Parameters
SortChangeType
sortChangedType
Type of the sort changed. |
GridSortField
sortExpression
The sort expression. |
SortChangedEventArgs(SortChangeType, GridSortField, Int32)
Initializes a new instance of the SortChangedEventArgs class.
Declaration
public SortChangedEventArgs(SortChangeType sortChangedType, GridSortField sortExpression, int index)
Parameters
SortChangeType
sortChangedType
Type of the sort changed. |
GridSortField
sortExpression
The sort expression. |
System.Int32
index
The index. |
SortChangedEventArgs(SortChangeType, GridSortField, Int32, Int32)
Initializes a new instance of the SortChangedEventArgs class.
Declaration
public SortChangedEventArgs(SortChangeType sortChangedType, GridSortField sortExpression, int oldIndex, int newIndex)
Parameters
SortChangeType
sortChangedType
Type of the sort changed. |
GridSortField
sortExpression
The sort expression. |
System.Int32
oldIndex
The old index. |
System.Int32
newIndex
The new index. |
SortChangedEventArgs(SortChangeType, GridSortField, GridSortField, Int32)
Initializes a new instance of the SortChangedEventArgs class.
Declaration
public SortChangedEventArgs(SortChangeType sortChangedType, GridSortField oldSortExpression, GridSortField newSortExpression, int index)
Parameters
SortChangeType
sortChangedType
Type of the sort changed. |
GridSortField
oldSortExpression
The old sort expression. |
GridSortField
newSortExpression
The new sort expression. |
System.Int32
index
The index. |
SortChangedEventArgs(SortChangeType, GridSortField, GridSortField, Int32, Int32)
Initializes a new instance of the SortChangedEventArgs class.
Declaration
public SortChangedEventArgs(SortChangeType sortChangedType, GridSortField oldSortExpression, GridSortField newSortExpression, int oldIndex, int newIndex)
Parameters
SortChangeType
sortChangedType
Type of the sort changed. |
GridSortField
oldSortExpression
The old sort expression. |
GridSortField
newSortExpression
The new sort expression. |
System.Int32
oldIndex
The old index. |
System.Int32
newIndex
The new index. |
Fields
NewIndex
Declaration
public readonly int NewIndex
Field Value
System.Int32
|
NewSortExpression
OldIndex
Declaration
public readonly int OldIndex
Field Value
System.Int32
|
OldSortExpression
SortChangeType
Properties
Index
Gets the index.
Declaration
public int Index { get; }
Property Value
System.Int32
The index. |
SortExpression
Gets the sort expression.
Declaration
public GridSortField SortExpression { get; }
Property Value
GridSortField
The sort expression. |