Class GridViewGroupingEventArgs
Represents data for the GridViewGrouping event.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.GridView.dll
Syntax
public class GridViewGroupingEventArgs : CancelRoutedEventArgs
Constructors
GridViewGroupingEventArgs(IGroupDescriptor, GroupingEventAction, Nullable<Int32>)
Initializes a new instance of the GridViewGroupingEventArgs class.
Declaration
public GridViewGroupingEventArgs(IGroupDescriptor groupDescriptor, GroupingEventAction action, Nullable<int> index)
Parameters
IGroupDescriptor
groupDescriptor
The group descriptor. |
GroupingEventAction
action
The action. |
System.Nullable<System.Int32>
index
The index. |
Properties
Action
Gets the action that will be performed.
Declaration
public GroupingEventAction Action { get; }
Property Value
GroupingEventAction
The action that will be performed. |
GroupDescriptor
Gets the group descriptor.
Declaration
public IGroupDescriptor GroupDescriptor { get; }
Property Value
IGroupDescriptor
The group descriptor. |
Index
Gets the index the group descriptor will be placed at.
Declaration
public Nullable<int> Index { get; }
Property Value
System.Nullable<System.Int32>
The index. |