A TableRow object represents a single row of data values, stored in columns, from a table.
A Table Row contains both an ordered array, and an unordered JSON object.
Sintaxis
p5.TableRow([str], [separator])
Parámetros
optional: populate the row with a string of values, separated by the separator
comma separated values (csv) by default
Métodos
Stores a value in the TableRow's specified column. The column may be specified by either its ID or title.
Stores a Float value in the TableRow's specified column. The column may be specified by either its ID or title.
Stores a String value in the TableRow's specified column. The column may be specified by either its ID or title.
Retrieves a value from the TableRow's specified column. The column may be specified by either its ID or title.
Retrieves a Float value from the TableRow's specified column. The column may be specified by either its ID or title.
Retrieves an String value from the TableRow's specified column. The column may be specified by either its ID or title.