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

VGridControlBase.InvalidateRowCells(BaseRow, Int32) Method

Invalidates the specified row cells.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v19.1.dll

Declaration

public virtual void InvalidateRowCells(
    BaseRow row,
    int recordIndex
)

Parameters

Name Type Description
row BaseRow

A BaseRow descendant which represents the row to which the cells belong.

recordIndex Int32

A zero-based integer value that specifies the index of the record that contains the cells.

Remarks

The InvalidateRowCells method can be useful when you custom paint row cells and need to redraw the cells that reside within a particular record due to custom changes that don’t lead to automatic repainting. To repaint the whole row use the VGridControlBase.InvalidateRow method.

See Also