@webref table:method @brief Removes a column from a table @param columnName the title of the column to be removed @see Table#addColumn()
(String columnName)
| 1867 | * @see Table#addColumn() |
| 1868 | */ |
| 1869 | public void removeColumn(String columnName) { |
| 1870 | removeColumn(getColumnIndex(columnName)); |
| 1871 | } |
| 1872 | |
| 1873 | /** |
| 1874 | * @param column the index number of the column to be removed |