table.tableToXml

Syntax table.tableToXml (adrtable, flIncludeAddress=false)

Params adrtable is the address of a table object.

flIncludeAddress is a flag which specifies whether to include the address of the table as the value of the top-level <table> element's address attribute.

Action Generates an XML representation of the table and all sub-objects.

Returns The XML text which represents the table.

Example table.tableToXml (@workspace.myTable)


   » "<table name=\"myTable\">\r\t<string name=\"myString\" value=\"This is a string.\"/>\r\t</table>\r"

Notes The XML text conforms to this specification.

This verb is implemented in script.

See Also table.xmlToTable

Discuss