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
row
Related addRow()
clearRows()
Updated on Sun Aug 30 12:17:17 2015.
Creative Commons License