RowCellStyleEventArgs(Int32, GridColumn, GridRowCellState, AppearanceObject) Constructor
Initializes a new instance of the RowCellStyleEventArgs class.
Namespace: DevExpress.XtraGrid.Views.Grid
Assembly: DevExpress.XtraGrid.v24.2.dll
Declaration
public RowCellStyleEventArgs(
int rowHandle,
GridColumn column,
GridRowCellState state,
AppearanceObject appearance
)
Parameters
Name | Type | Description |
---|---|---|
rowHandle | Int32 | An integer value that specifies the handle of the row whose cell’s style is to be set. This value is assigned to the CustomRowCellEventArgs.RowHandle property. |
column | GridColumn | A GridColumn object that represents the column that owns the cell. This value is assigned to the CustomRowCellEventArgs.Column property. |
state | GridRowCellState | A GridRowCellState enumeration value which specifies the row’s state. |
appearance | AppearanceObject | An AppearanceObject object that provides the appearance settings used to paint the cell. This value is assigned to the RowCellStyleEventArgs.Appearance property. |
See Also