Skip to main content
A newer version of this page is available. .

GetCustomRowCellEditEventArgs(BaseRow, Int32, Int32, RepositoryItem) Constructor

Initializes a new instance of the GetCustomRowCellEditEventArgs class.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

public GetCustomRowCellEditEventArgs(
    BaseRow row,
    int recordIndex,
    int cellIndex,
    RepositoryItem repositoryItem
)

Parameters

Name Type Description
row BaseRow

A BaseRow descendant representing the row that contains the cell. This value is assigned to the RowEventArgs.Row value.

recordIndex Int32

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

cellIndex Int32

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

repositoryItem RepositoryItem

A RepositoryItem descendant representing the currently assigned editor. This value is assigned to the GetCustomRowCellEditEventArgs.RepositoryItem property.

See Also