Back to Devexpress

ColumnView.FocusInvalidRow() Method

windowsforms-devexpress-dot-xtragrid-dot-views-dot-base-dot-columnview-2318c3e2.md

latest1.6 KB
Original Source

ColumnView.FocusInvalidRow() Method

Allows you to temporarily hide the row focus.

Namespace : DevExpress.XtraGrid.Views.Base

Assembly : DevExpress.XtraGrid.v25.2.dll

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

Declaration

csharp
public void FocusInvalidRow()
vb
Public Sub FocusInvalidRow

Remarks

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

csharp
protected override void OnLoad(EventArgs e) {
    base.OnLoad(e);
    tileView1.FocusInvalidRow();
}
vb
Protected Overrides Sub OnLoad(ByVal e As EventArgs)
    MyBase.OnLoad(e)
    tileView1.FocusInvalidRow()
End Sub

See Also

InvalidRowHandle

Rows

ColumnView Class

ColumnView Members

DevExpress.XtraGrid.Views.Base Namespace