Class GridViewGroupSortChangedEventArgs
Provides data for the GridViewGroupSortChanging event. It can be canceled. The event is fired upon chaning the sort order of a group by the end user.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewGroupSortChangedEventArgs : EventArgs
Constructors
GridViewGroupSortChangedEventArgs(GridViewTemplate, GroupDescriptor, ListSortDirection)
Initializes a new instance of the GridViewGroupSortChangingEventArgs class.
Declaration
public GridViewGroupSortChangedEventArgs(GridViewTemplate template, GroupDescriptor groupDescriptor, ListSortDirection direction)
Parameters
GridViewTemplate
template
The GridViewTemplate |
GroupDescriptor
groupDescriptor
The GroupDescriptor |
System.ComponentModel.ListSortDirection
direction
The Direction |
Properties
Direction
Gets the changed group sort order.
Declaration
public ListSortDirection Direction { get; }
Property Value
System.ComponentModel.ListSortDirection
|
GroupDescriptor
Gets the descriptor creating the group which is about the be changed.
Declaration
public GroupDescriptor GroupDescriptor { get; }
Property Value
GroupDescriptor
|
Template
Gets the GridViewTemplate where the event was fired.
Declaration
public GridViewTemplate Template { get; }
Property Value
GridViewTemplate
|