[]
Removes the last row from the grid.
public void RemoveItem()
Public Sub RemoveItem()
You can also add and remove rows using the Rows collection.
The RemoveItem() method is provided for consistency, since the grid also has an AddItem(string) method.
Removes a row at a specified position from the grid.
public void RemoveItem(int index)
Public Sub RemoveItem(index As Integer)
| Type | Name | Description |
|---|---|---|
| int | index | Index of the row to be removed. |