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

GetCustomRowCellStyleEventArgs(BaseRow, Int32, Int32, AppearanceObject) Constructor

Initializes a new instance of the GetCustomRowCellStyleEventArgs class.

Namespace: DevExpress.XtraVerticalGrid.Events

Assembly: DevExpress.XtraVerticalGrid.v18.2.dll

Declaration

public GetCustomRowCellStyleEventArgs(
    BaseRow row,
    int recordIndex,
    int cellIndex,
    AppearanceObject appearance
)

Parameters

Name Type Description
row BaseRow

A BaseRow descendant which represents the processed row. This value is assigned to the RowEventArgs.Row property.

recordIndex Int32

An integer value specifying the index of the record which contains the processed cell. This value is assigned to the RowCellEventArgs.RecordIndex property.

cellIndex Int32

An integer value specifying the cell’s index. This value is assigned to the RowCellEventArgs.CellIndex property.

appearance AppearanceObject

A AppearanceObject object which provides the appearance settings used to paint the cell. This value is assigned to the GetCustomRowCellStyleEventArgs.Appearance property.

See Also