Home Search

DriveWorks Pro 21
TableRow

Send Feedback

TableRow

Constructs a table containing a header row, followed by a single data row containing the given values.

Syntax

TableRow([Collection of Values])

Where:

Collection of Values are the values to include in the data row.

Examples

RuleMeaning
TableRow("Red","Green","Blue")Will return an array consisting of two rows; a blank header row and a row with the values Red, Green and Blue.

Example Outcome

Header Row (blank)
Row 1Red
Row 2Green
Row 3Blue

DriveWorks will return the table above as an array, which will look like:

Table returned as an Array
{"","","";"Red","Green","Blue"}