html.table.delete

Syntax html.table.delete (adrTable)

Params adrTable is the address of a table returned from html.table.new.

Action Deletes storage for the specified table.

Returns True if the table existed and was deleted. If the table specified by adrTable doesn't exist, a scriptError is generated.

Examples local (adr=html.table.new ());html.table.delete (adr)

   » true

Notes After creating a new table and before deleting, you will want to add columns and rows and render the table. This verb is what to call when you're finished with the table.

This verb is new in Frontier 6.1.

See Also html.table.new

Discuss