BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridDataBoundGrid1_CurrentCellActivating(object sender, GridCurrentCellActivatingEventArgs e) { if(e.RowIndex == 9) e.RowIndex = 5; }
private void gridControl1_CurrentCellActivating(object sender, GridCurrentCellActivatingEventArgs e) { if(e.RowIndex == 9) { e.RowIndex = 5; if(Control.MouseButtons == MouseButtons.Left) { this.gridControl1.Selections.Clear(); this.gridControl1.Selections.Add(GridRangeInfo.Row(5)); } } }