XMLMapping.Delete Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Deletes the XML mapping from the parent content control.
public:
void Delete();
public void Delete ();
abstract member Delete : unit -> unit
Public Sub Delete ()
Examples
The following example deletes the XML mapping for all content controls in the active document that are currently mapped.
<span class="label">Dim objCC As ContentControl
For Each objCC In ActiveDocument.ContentControls
If objCC.XMLMapping.IsMapped Then
objCC.XMLMapping.</span>
<span class="label">Delete</span>
<span class="label">End IfNext</span>
Remarks
This operation removes the XML mapping. Both the XML data and the content control remain in the document.