TableRow

Data / Composite

Description

Represents a single row in a Table. Access values by column index or name.

Syntax

TableRow row(rowData, columns)

Parameters

None

Returns

TableRow

Methods

getString(int i)Gets value at column index as string
getString(std::string col)Gets value by column name as string
getInt(int i)Gets value at column index as int
getFloat(int i)Gets value at column index as float
setString(int i, std::string v)Sets value at column index
setInt(int i, int v)Sets value as int
setFloat(int i, float v)Sets value as float

Related

Under the Hood

Implementation in Processing.h / Processing.cpp:

Loading...