FutureProg functions
bwtexttable
Overload 1
bwtexttable overload 1
Text bwtexttable(Text Collection headers, Text Collection values, Number width)
Available in
- computer function
- computer program
- standard futureprog
This function displays a plain 'text table', essentially an ASCII representation of a table. The number of columns in the header MUST match the number of columns in each row.
| Parameter | Type | Description |
|---|---|---|
headers |
Text Collection |
A collection of text values to use as the headers of the table |
values |
Text Collection |
A collection of text values, each of which is a row, with columns separated by the tab (\t) character |
width |
Number |
The width of the table |
Overload 2
bwtexttable overload 2
Text bwtexttable(Text headers, Text Collection values, Number width)
Available in
- computer function
- computer program
- standard futureprog
This function displays a plain 'text table', essentially an ASCII representation of a table. The number of columns in the header MUST match the number of columns in each row.
| Parameter | Type | Description |
|---|---|---|
headers |
Text |
Text with values separated by tab characters (\t) to use as the headers of the table |
values |
Text Collection |
A collection of text values, each of which is a row, with columns separated by the tab (\t) character |
width |
Number |
The width of the table |