%XML.String
Class %XML.String Extends %String [ Not ProcedureBlock, System = 2 ]
The %XML.String data type class represents a subclass of %String with CONTENT="MIXED" for XML mixed content.
Parameters
CONTENT
Parameter CONTENT = "MIXED";
XML element content "MIXED" for mixed="true" (default) and "STRING" or "ESCAPE" for mixed="false". If CONTENT="STRING" XML special characters are put in a CDATA section during XML export. If CONTENT="ESCAPE" XML special characters are escaped during XML export. If CONTENT="ESCAPE-C14N" XML special characters are escaped during XML export using the translate table, XMLC, specified for XML Canonicalizaton. The main difference is that CR is escaped as
ESCAPE
Parameter ESCAPE [ Constraint = "HTML,XML", Flags = ENUM ] = "XML";
Controls the translate table used to escape content when CONTENT="MIXED" is specified.
MAXLEN;
Parameter MAXLEN;
The string may be any length.