Reference+
Name
getColumnCount()
Class
Table
Description
Returns the total number of columns in a table.
Examples
Table table; void setup() { table = new Table(); println(table.getColumnCount()); // Prints 0 table.addColumn("name"); println(table.getColumnCount()); // Prints 1 table.addColumn("type"); println(table.getColumnCount()); // Prints 2 }
Syntax
.getColumnCount()
Return
int
Related
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.