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.
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class GridViewGroupSortChangingEventArgs : CancelEventArgs
Inheritance: objectEventArgsCancelEventArgsGridViewGroupSortChangingEventArgs
Inherited Members
Constructors
Initializes a new instance of the GridViewGroupSortChangingEventArgs class.
C#
public GridViewGroupSortChangingEventArgs(GridViewTemplate template, GroupDescriptor groupDescriptor, ListSortDirection direction)
The GridViewTemplate
groupDescriptorGroupDescriptorThe GroupDescriptor
directionListSortDirectionThe NewDirection
Properties
Gets the descriptor creating the group which is about the be changed.
C#
public GroupDescriptor GroupDescriptor { get; }
Gets the new group sort order.
C#
public ListSortDirection NewDirection { get; }
Gets the GridViewTemplate where the event was fired.
C#
public GridViewTemplate Template { get; }