Class
GridViewCellMergingEventArgs

Provides data for the CellMerging event.

Definition

Namespace:Telerik.WinControls.UI

Assembly:Telerik.WinControls.GridView.dll

Syntax:

cs-api-definition
public class GridViewCellMergingEventArgs : EventArgs

Inheritance: objectEventArgsGridViewCellMergingEventArgs

Inherited Members EventArgs.Empty

Constructors

GridViewCellMergingEventArgs(GridCellElement, GridCellElement)

Initializes a new instance of the GridViewCellMergingEventArgs class.

Declaration

cs-api-definition
public GridViewCellMergingEventArgs(GridCellElement cell1, GridCellElement cell2)

Parameters

cell1

GridCellElement

cell2

GridCellElement

Properties

Cell1

First cell.

Declaration

cs-api-definition
public GridCellElement Cell1 { get; }

Property Value

GridCellElement

Cell2

Second cell.

Declaration

cs-api-definition
public GridCellElement Cell2 { get; }

Property Value

GridCellElement

Handled

Gets or sets a value that indicates whether the event handler has completely handled the event or whether default grid cell comparison should be executed. Note that if this property is

false
the default logic will be executed.

Declaration

cs-api-definition
public bool Handled { get; set; }

Property Value

bool

Result

The result of cells comparison. The default implementation compares the values of the cells.

Declaration

cs-api-definition
public bool Result { get; set; }

Property Value

bool