IgnoreMixedContent Property

Microsoft Word Visual Basic

IgnoreMixedContent Property

Returns a Boolean that represents whether Microsoft Word preforms validation on text nodes that have element siblings and specifies whether these text nodes are saved in XML when the XMLSaveDataOnly property is True.

True causes Word to ignore schema violations caused by text nodes that have element siblings; it also prevents these text nodes from being saved in XML when the XMLSaveDataOnly property is True, which helps to prevent text that was inserted by an Extensible Stylesheet Language Transformation (XLST) from being saved as part of the data. False raises validation errors on text nodes with element siblings.

expression.IgnoreMixedContent

expression    Required. An expression that returns an XMLSchemaReferences collection.

Example

The following example disables validation of XML and prevents text nodes that have elements as siblings from being saved as XML for the active document.

    ActiveDocument.XMLSchemaReferences _
    .IgnoreMixedContent = True