Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
C#
public class GridViewCustomGroupingEventArgs : EventArgs
Inheritance: objectEventArgsGridViewCustomGroupingEventArgs
Inherited Members
Constructors
Initializes a new instance of the GridViewCustomGroupingEventArgs class.
C#
public GridViewCustomGroupingEventArgs(GridViewTemplate template, GridViewRowInfo row, int level, object groupKey)
The template.
rowGridViewRowInfoThe row.
levelintThe level.
groupKeyobjectThe group key.
Initializes a new instance of the GridViewCustomGroupingEventArgs class.
C#
public GridViewCustomGroupingEventArgs(GridViewTemplate template, GridViewRowInfo row, int level)
The template.
rowGridViewRowInfoThe row.
levelintThe level.
Properties
Gets or sets the group key used for custom groupin operation.
C#
public object GroupKey { get; set; }
The group key.
Gets or sets a value indicating whether this GridViewCustomGroupingEventArgs is handled.
C#
public bool Handled { get; set; }
true if handled; otherwise, false.
Gets the row.
C#
public GridViewRowInfo Row { get; }
The row.
Gets the template.
C#
public GridViewTemplate Template { get; }
The template.