BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
this.gridControl1.Model.Options.WrapCell = true;
But in your case, it appears that your right-most column is disabled. So, setting the above property will not get you the desired behavior. Instead you will have to handle this process yourself. In the attached project, there is a derived grid that implements this process.
if(!b1) { ..... } else { this.CurrentCell.MoveTo(row, col, GridSetCurrentCellOptions.ScrollInView); b = true; }