| Name | removeRow() |
||
|---|---|---|---|
| Examples |
table = Table()
table.addColumn("name")
table.addColumn("type")
newRow = table.addRow()
newRow.setString("name", "Lion")
newRow.setString("type", "Mammal")
print(table.getRowCount()) # Prints 1
table.removeRow(0) # Removes the first row
print(table.getRowCount()) # Prints 0
| ||
| Description | |||
| Syntax | |||
| Parameters |
| ||
| Related |
addRow() clearRows() |
Cover
Reference
Tutorials
Examples
Bugs
