Method RemoveRow
RemoveRow(Row)
Removes a row from the table.
Declaration
public void RemoveRow(Catalog.Table.Row row)
Parameters
Type | Name | Description |
---|---|---|
Catalog.Table.Row | row | A row to remove. Please be aware that the row is removed and not detached. So you shouldn't use the row in any way after it is removed. |
RemoveRow(int)
Removes a row from the table.
Declaration
public void RemoveRow(int rowRank)
Parameters
Type | Name | Description |
---|---|---|
int | rowRank | A rank of row to remove (zero-based). |