Skip to main content

ColumnView.FocusInvalidRow() Method

Allows you to temporarily hide the row focus.

Namespace: DevExpress.XtraGrid.Views.Base

Assembly: DevExpress.XtraGrid.v23.2.dll

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

Declaration

public void FocusInvalidRow()

Remarks

The FocusInvalidRow method moves the row/tile focus to an invalid row (GridControl.InvalidRowHandle).

protected override void OnLoad(EventArgs e) {
    base.OnLoad(e);
    tileView1.FocusInvalidRow();
}
See Also