How can I select a particular row of the grid, knowing their index?
Thank you
Hello ddol,
You could try one of the following approaches and choose the one that fits the best with your scenario:
ultraGrid1.Rows[4].Selected = true; //or ultraGrid1.Selected.Rows.Add(ultraGrid1.Rows[4]);
Please feel free to let me know if you have any other questions with this matter.