Class GridViewCellMergingEventArgs
Provides data for the CellMerging event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public class GridViewCellMergingEventArgs : EventArgs
Constructors
GridViewCellMergingEventArgs(GridCellElement, GridCellElement)
Initializes a new instance of the GridViewCellMergingEventArgs class.
Declaration
public GridViewCellMergingEventArgs(GridCellElement cell1, GridCellElement cell2)
Parameters
GridCellElement
cell1
|
GridCellElement
cell2
|
Properties
Cell1
Cell2
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
public bool Handled { get; set; }
Property Value
System.Boolean
|
Result
The result of cells comparison. The default implementation compares the values of the cells.
Declaration
public bool Result { get; set; }
Property Value
System.Boolean
|