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.
구문
p5.TableRow([str], [separator])
매개변수
optional: populate the row with a string of values, separated by the separator
comma separated values (csv) by default
메서드
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.