There is IsSelected property on cells and rows, but when I programically select row/cell, there is still one more selected (first row) which was there after grid initialization. I tried to deselect row by this, but with no result
if (radGridView1.CurrentRow != null) radGridView1.CurrentRow.IsSelected = false;