Skip to main content

CellMergeEventArgs(Int32, Int32, GridColumn) Constructor

Initializes a new instance of the CellMergeEventArgs class with the specified rows and column.

Namespace: DevExpress.XtraGrid.Views.Grid

Assembly: DevExpress.XtraGrid.v23.2.dll

NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation

Declaration

public CellMergeEventArgs(
    int rowHandle1,
    int rowHandle2,
    GridColumn column
)

Parameters

Name Type Description
rowHandle1 Int32

The handle of the first row which contains the value to be merged. This value is assigned to the CellMergeEventArgs.RowHandle1 property.

rowHandle2 Int32

The handle of the second row which contains the value to be merged. This value is assigned to the CellMergeEventArgs.RowHandle2 property.

column GridColumn

A GridColumn that represents the column containing the cells to be merged. This value is assigned to the CellMergeEventArgs.Column property.

See Also