Use removeColumn() to remove an existing column from a Table object. The column to be removed may be identified by either its title (a String ) or its index value (an int ). removeColumn(0) would remove the first column, removeColumn(1) would remove the second
(String columnName)
| 1896 | * @see Table#addColumn() |
| 1897 | */ |
| 1898 | public void removeColumn(String columnName) { |
| 1899 | removeColumn(getColumnIndex(columnName)); |
| 1900 | } |
| 1901 | |
| 1902 | /** |
| 1903 | * @param column the index number of the column to be removed |