ColumnView.FocusInvalidRow() Method
In This Article
Allows you to temporarily hide the row focus.
Namespace: DevExpress.XtraGrid.Views.Base
Assembly: DevExpress.XtraGrid.v24.2.dll
NuGet Packages: DevExpress.Win.Grid, DevExpress.Win.Navigation
#Declaration
#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