Word.Interfaces.CustomXmlPartData interface
An interface describing the data returned by calling customXmlPart.toJSON().
Properties
| built |
Gets a value that indicates whether the |
| document |
Gets the root element of a bound region of data in the document. If the region is empty, the property returns |
| id | Gets the ID of the custom XML part. |
| namespace |
Gets the set of namespace prefix mappings used against the current |
| namespace |
Gets the namespace URI of the custom XML part. |
| schema |
Specifies a |
| xml | Gets the XML representation of the current |
Property Details
builtIn
Gets a value that indicates whether the CustomXmlPart is built-in.
builtIn?: boolean;
Property Value
boolean
Remarks
documentElement
Gets the root element of a bound region of data in the document. If the region is empty, the property returns Nothing.
documentElement?: Word.Interfaces.CustomXmlNodeData;
Property Value
Remarks
id
Gets the ID of the custom XML part.
id?: string;
Property Value
string
Remarks
namespaceManager
Gets the set of namespace prefix mappings used against the current CustomXmlPart object.
namespaceManager?: Word.Interfaces.CustomXmlPrefixMappingData[];
Property Value
Remarks
namespaceUri
Gets the namespace URI of the custom XML part.
namespaceUri?: string;
Property Value
string
Remarks
schemaCollection
Specifies a CustomXmlSchemaCollection object representing the set of schemas attached to a bound region of data in the document.
schemaCollection?: Word.Interfaces.CustomXmlSchemaData[];
Property Value
Remarks
xml
Gets the XML representation of the current CustomXmlPart object.
xml?: string;
Property Value
string