XMLMapping.Delete method (Word)

Deletes the XML mapping from the parent content control.

Syntax

expression.Delete

expression An expression that returns an 'XMLMapping' object.

Remarks

This operation removes the XML mapping. Both the XML data and the content control remain in the document.

Example

The following example deletes the XML mapping for all content controls in the active document that are currently mapped.

Dim objCC As ContentControl 
 
For Each objCC In ActiveDocument.ContentControls 
 If objCC.XMLMapping.IsMapped Then 
 objCC.XMLMapping.Delete 
 End If 
Next

See also

XMLMapping Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.