mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 22:29:18 +01:00
Added reference for Table addColumn() and removeColumn()
This commit is contained in:
@@ -1297,11 +1297,15 @@ public class Table {
|
||||
/**
|
||||
* @webref table:method
|
||||
* @brief Removes a column from the table
|
||||
* @param columnName the title of the column to be removed
|
||||
*/
|
||||
public void removeColumn(String columnName) {
|
||||
removeColumn(getColumnIndex(columnName));
|
||||
}
|
||||
|
||||
/**
|
||||
* @param column the index number of the column to be removed
|
||||
*/
|
||||
public void removeColumn(int column) {
|
||||
int newCount = columns.length - 1;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user