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));
}
}
}