Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

VGridControlBase.InvalidateRowCells(BaseRow, Int32) Method

Invalidates the specified row cells.

Namespace: DevExpress.XtraVerticalGrid

Assembly: DevExpress.XtraVerticalGrid.v24.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