xml.addValue
| Syntax |
xml.addValue (adrParent, name, value)
|
| Params |
adrParent is the address of the table in which to create the new value. name is the name of the new object. value is the value of the new object.
|
| Action |
Creates a new serialized object (not a table) in the table pointed to by adrparent, with the indicated name and value. Returns the address of the newly created object.
|
| Returns |
An address.
|
| Examples |
xml.addValue (@scratchpad, "MyTest", "foo") » @scratchpad.["0001\tMyTest"]
|
| See Also |
xml.addTable
|