Skip to main content

ColumnView.RefreshRow(Int32) Method

Invalidates the specified row, and forces it to be redrawn.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v22.2.dll

NuGet Package: DevExpress.Win.Grid

Declaration

public void RefreshRow(
    int rowHandle
)

Parameters

Name Type Description
rowHandle Int32

An integer value which identifies the row.

Remarks

Call the RefreshRow method to redraw the specified row. The code below redraws the focused row.

gridView1.RefreshRow(gridView1.FocusedRowHandle);

Note

Detail pattern Views do not contain data and they are never displayed within XtraGrid. So, the RefreshRow member must not be invoked for these Views. The RefreshRow member can only be used with Views that display real data within the Grid Control. Use the following methods to access these Views with which an end user interacts at runtime.

See Also