Prototype for SerializableObject objects.
you cannot create a SerializableObject, only derived typed can be created such as: URL object or ConfigurationObject derived objects.
none.
none.
ECMerge 2.1
SerializableObject objects can be serialized to XML and set from a XML string.
no specific properties.
Take the parameters for my_document and logs their XML representation.
var param = my_document.parameters;
log (param.as_xml());
ConfigurationObject object
function toString ( )
function as_xml ( )
returns a String
none.
SerializableObject object.
ECMerge 2.1
Returns a XML textual representation of the serializable object.
SerializableObject object, SerializableObject.set_xml method.
function set_xml (xml_string)
xml_string. String. XML representation, as saved by as_xml.
SerializableObject object.
ECMerge 2.1
Sets the value in the object from a XML textual representation serialized earlier with as_xml( ).
Saves an OptionsSet as an XML string then create another OptionsSet with same options:
var set1_xml =
current_frame.coordinator.document.parameters.settings.as_xml();
var set2 = new OptionsSet();
set2.set_xml (set1_xml);
SerializableObject object, SerializableObject.as_xml method