New to Telerik UI for WinFormsStart a free 30-day trial

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

C#
public class GridViewCustomGroupingEventArgs : EventArgs

Inheritance: objectEventArgsGridViewCustomGroupingEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the GridViewCustomGroupingEventArgs class.

C#
public GridViewCustomGroupingEventArgs(GridViewTemplate template, GridViewRowInfo row, int level, object groupKey)
Parameters:templateGridViewTemplate

The template.

rowGridViewRowInfo

The row.

levelint

The level.

groupKeyobject

The group key.

Initializes a new instance of the GridViewCustomGroupingEventArgs class.

C#
public GridViewCustomGroupingEventArgs(GridViewTemplate template, GridViewRowInfo row, int level)
Parameters:templateGridViewTemplate

The template.

rowGridViewRowInfo

The row.

levelint

The level.

Properties

Gets or sets the group key used for custom groupin operation.

C#
public object GroupKey { get; set; }
Property Value:

The group key.

Gets or sets a value indicating whether this GridViewCustomGroupingEventArgs is handled.

C#
public bool Handled { get; set; }
Property Value:

true if handled; otherwise, false.

Gets the level.

C#
public int Level { get; }
Property Value:

The level.

Gets the row.

C#
public GridViewRowInfo Row { get; }
Property Value:

The row.

Gets the template.

C#
public GridViewTemplate Template { get; }
Property Value:

The template.