I have an XtraGrid with ~ 500 rows in it. I can set FocusedRowHandle, say, to line 245. But is there a way that will scroll this now focused line if it is not currently visible?
DevExpress.XtraGrid.Views.Base.ColumnView vw; vw = MyGrid.DefaultView as DevExpress.XtraGrid.Views.Base.ColumnView; vw.FocusedRowHandle = 245;
source share