sevReadTable
sevReadTable(x_stateHandle S_componentName o_table) =>t/nil
Description
Returns the component table from the specified XML state file.
Arguments
|
Name of the XML component whose value you want to read from the table. |
|
|
Table that contains the information about the specified component. |
Value Returned
|
The component table is returned from the specified XML state file. |
|
Examples
Reads the component table for a given XML state file.
stateFile = strcat(directory "/xml.state")
stateHandle = sevOpenXmlFile(stateFile)
//The above commands return the handle for the XML state file.
table = makeTable('tableformat nil)
//The above command creates a table.
sevReadTable(stateHandle "analyses" table)
// The above command reads the value of the componentanalysesfrom the given table for the specified XML state file handle.
Return to top