cancel
Showing results for 
Search instead for 
Did you mean: 

Any way to programmatically select a grid row?

Former Member
0 Kudos

The matrix control has a SelectRow method to select a row. Is there any way to similarly select a row in a grid control? I can't find it if there is. Do I have to set the Offset property of the bound DataTable or something?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You can select a row using the SelectedRow collection

oGrid.Rows.SelectedRows.Add(RowNum)

Answers (0)