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

TableRow

Name

setFloat()

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 float value in the TableRow's specified column. The column may be specified by either its ID or title.
Syntax
.setFloat(column, value)
.setFloat(columnName, value)
Parameters
column int: ID number of the target column
value float: value to assign
columnName String: title of the target column
Returnsvoid
RelatedsetInt()
setString()
Updated on May 19, 2014 05:30:04pm PDT

Creative Commons License