Constructs a table containing a header row, followed by a single data row containing the given values.
TableRow([Collection of Values])
Where:
Collection of Values are the values to include in the data row.
Rule | Meaning |
---|---|
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. |
Header Row (blank) | |
---|---|
Row 1 | Red |
Row 2 | Green |
Row 3 | Blue |
DriveWorks will return the table above as an array, which will look like:
Table returned as an Array |
---|
{"","","";"Red","Green","Blue"} |