This reference is for Processing 2.0+. If you have a previous version, use the reference included with your software. If you see any errors or have suggestions, please let us know. If you prefer a more technical reference, visit the Processing Javadoc.
| Class | |||||||
|---|---|---|---|---|---|---|---|
| Name | setString() |
||||||
| Examples |
Table table;
void setup() {
table = new Table();
table.addColumn("number", Table.INT);
table.addColumn("mass", Table.FLOAT);
table.addColumn("name", Table.STRING);
TableRow row = table.addRow();
row.setInt("number", 8);
row.setFloat("mass", 15.9994);
row.setString("name", "Oxygen");
println(row.getInt("number")); // Prints 8
println(row.getFloat("mass")); // Prints 15.9994
println(row.getString("name")); // Prints "Oxygen
}
| ||||||
| Description | Stores a String value in the TableRow's specified column. The column may be specified by either its ID or title. | ||||||
| Syntax | .setString(column, value) .setString(columnName, value) | ||||||
| Parameters |
| ||||||
| Returns | void | ||||||
| Related | setInt() setFloat() |
