[]
Deletes the given row from an unbound grid.
public void Delete(int index)
Type | Name | Description |
---|---|---|
int | index | The index of the row to remove. |
Deletes a range of rows from an unbound grid.
public void Delete(int index, int count)
Type | Name | Description |
---|---|---|
int | index | The starting index of the row to remove. |
int | count | The number of rows to remove. |