سلام،
من از GetCheckedRows برای گرفتن رکوردهای تیک خورده استفاده کردم و برای حذف هم این کد رو استفاده کردم:
Dim CheckedRows() As GridEXRow
CheckedRows = pInspectionGrid.GetCheckedRows()
ForEach row As GridEXRow In CheckedRows
'get
If row.RowType = RowType.Record Then
Dim dr As DataRowView
dr =
CType(row.DataRow, DataRowView)
'Now, copy the values of datarow into the datasource of GridEX2
row.Delete();

EndIf