Range.InsertXML(String, Object) Method

Definition

Inserts the specified XML text into the specified range or selection.

public void InsertXML (string XML, ref object Transform);
abstract member InsertXML : string * obj -> unit
Public Sub InsertXML (XML As String, Optional ByRef Transform As Object)

Parameters

XML
String

Required String. The XML text to insert.

Transform
Object

Optional Object. The transform to apply to the inserted XML text.

Remarks

If the specified range or selection contains text, the InsertXML method replaces the existing text.

Use the InsertXML method to insert text marked up with either arbitrary XML or Microsoft Word XML. The XML must be well formed. If it uses Word XML, then it must also be valid according to the Word XML schema. For more information on the Word XML schema, please refer to the Word XML Content Development Kit, which you can find on the Microsoft Developer Network (MSDN) Web site.

If the specified XML text cannot be inserted into the specified range or selection, an error message is displayed.

Applies to