Class GridViewCustomGroupingEventArgs
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCustomGroupingEventArgs : EventArgs
Constructors
GridViewCustomGroupingEventArgs(GridViewTemplate, GridViewRowInfo, Int32)
Initializes a new instance of the GridViewCustomGroupingEventArgs class.
Declaration
public GridViewCustomGroupingEventArgs(GridViewTemplate template, GridViewRowInfo row, int level)
Parameters
GridViewTemplate
template
The template. |
GridViewRowInfo
row
The row. |
System.Int32
level
The level. |
GridViewCustomGroupingEventArgs(GridViewTemplate, GridViewRowInfo, Int32, Object)
Initializes a new instance of the GridViewCustomGroupingEventArgs class.
Declaration
public GridViewCustomGroupingEventArgs(GridViewTemplate template, GridViewRowInfo row, int level, object groupKey)
Parameters
GridViewTemplate
template
The template. |
GridViewRowInfo
row
The row. |
System.Int32
level
The level. |
System.Object
groupKey
The group key. |
Properties
GroupKey
Gets or sets the group key used for custom groupin operation.
Declaration
public object GroupKey { get; set; }
Property Value
System.Object
The group key. |
Handled
Gets or sets a value indicating whether this GridViewCustomGroupingEventArgs is handled.
Declaration
public bool Handled { get; set; }
Property Value
System.Boolean
|
Level
Gets the level.
Declaration
public int Level { get; }
Property Value
System.Int32
The level. |
Row
Gets the row.
Declaration
public GridViewRowInfo Row { get; }
Property Value
GridViewRowInfo
The row. |
Template
Gets the template.
Declaration
public GridViewTemplate Template { get; }
Property Value
GridViewTemplate
The template. |