Standalone (XmlDoc property)

From m204wiki
Revision as of 21:05, 3 March 2014 by JAL (talk | contribs) (→‎Request-cancellation errors (for set method))
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Standalone specification in "XML declaration" (XmlDoc class)

Standalone sets or returns the value of standalone in the "XML declaration," if any, at the beginning of the serialized XML document.

Syntax

%currentString = doc:Standalone doc:Standalone = newString

Syntax terms

%currentString The string value of doc's Standalone property.
doc An XmlDoc object expression.
newString The string value to assign to doc's Standalone property. The only values to which you may set the Standalone property are:
  • The null string
  • Yes
  • No

Usage notes

  • The initial value of Standalone is the null string.
  • If a document is deserialized into an XmlDoc, the value of Standalone of the XmlDoc will be the value specified for standalone in the "XML declaration" of the document, if there was one.

    The possible Standalone values after deserialization are:

    • The null string
    • Yes
    • No

  • Standalone may be set to a non-null string only if the value of the Version property is also a non-null string.

Examples

The following example sets the Version and Standalone properties:

begin %doc object xmlDoc %doc:loadXml('<a/>') %doc:Version = '1.0' %doc:Standalone = 'yes' %doc:print end

The example result follows:

<?xml version="1.0" standalone="yes"?> <a/>

Request-cancellation errors (for set method)

This list is not exhaustive: it does not include all the errors that are request cancelling.

  • The Version property is the null string, and the newString argument is not the null string.
  • newString is invalid.

See also