Skip to main content

RowCellEventArgs(BaseRow, Int32, Int32) Constructor

Creates a new RowCellEventArgs object.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

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

Declaration

public RowCellEventArgs(
    BaseRow row,
    int recordIndex,
    int cellIndex
)

Parameters

Name Type Description
row BaseRow

A BaseRow descendant representing the processed cell’s owning row. This value is assigned to the RowEventArgs.Row property.

recordIndex Int32

A zero-based integer representing the record containing the processed cell. This value is assigned to the RowCellEventArgs.RecordIndex property.

cellIndex Int32

A zero-based integer representing the processed cell’s index. This value is assigned to the RowCellEventArgs.CellIndex property.

See Also