Skip to main content

VGridControlBase.InvalidateRowCells(BaseRow, Int32) Method

Invalidates the specified row cells.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v23.2.dll

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

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