html.table.addColumn
| Syntax |
html.table.addColumn (adrTable, title, type, align, size, link, flLink)
|
| Params |
adrTable is the address of a table created with html.table.new. title, an optional string, is the label to give this column. type, an optional string that defaults to "string," is the type of data in this column. Other types include time, date, and glossaryLink. align, an optional string that defaults to "left," specifies the alignment for this column. size, an optional string, is the font size to use when rendering this column as HTML. link, an optional string, specifies a URL to link the column title to. flLink, an optional boolean that defaults to false, specifies whether or not to link to the column to using the link parameter.
|
| Action |
Creates storage for and data about a table column.
|
| Returns |
The address of the column.
|
| Example |
local (adr=html.table.new ());html.table.addColumn (adr, "Column 1") @system.temp.html.tables.["100"].columns.["00001"]
|
| Notes |
The address of the storage is an implementation detail: you should not count on it being in the system.temp table or anywhere in particular. This verb is new in Frontier 6.1.
|
| See Also |
html.table.new
|