The "ds_grid_delete_row" Function
Syntax#
| Argument | Type | Description |
|---|---|---|
id | ds_grid | The data structure to remove a row from |
row | integer | The index of a row to remove |
Description#
Removes a row from the specified ds_grid while preserving other data.
When complete, ds_grid_height will be reduced by 1. For this reason, a row should only be deleted when there are at least two rows in the grid, otherwise the entire grid will be destroyed.

X1