_XDocument3.ImportDOM(IXMLDOMDocument) Method

Definition

Imports the specified XML data into the current form.

public:
 void ImportDOM(Microsoft::Office::Interop::InfoPath::SemiTrust::IXMLDOMDocument ^ pxDoc);
public void ImportDOM (Microsoft.Office.Interop.InfoPath.SemiTrust.IXMLDOMDocument pxDoc);
abstract member ImportDOM : Microsoft.Office.Interop.InfoPath.SemiTrust.IXMLDOMDocument -> unit
Public Sub ImportDOM (pxDoc As IXMLDOMDocument)

Parameters

pxDoc
IXMLDOMDocument

The XML data that is to be imported (merged) into the currently open form.

Implements

Examples

In the following example, the ImportDOM method of the XDocument object is used to import a form from the OnMergeRequest event:

[InfoPathEventHandler(EventType=InfoPathEventType.OnMergeRequest)]
public void OnMergeRequest(MergeEvent e)
{ 
 thisXDocument.<span class="label">ImportDOM</span>(e.DOM);
 e.ReturnStatus = true;
}

In the following example, the ImportDOM method of the XDocument object is used to import a form from the OnMergeRequest event:

[InfoPathEventHandler(EventType=InfoPathEventType.OnMergeRequest)]
public void OnMergeRequest(MergeEvent e)
{ 
 thisXDocument.<span class="label">ImportDOM</span>(e.DOM);
 e.ReturnStatus = true;
}

Remarks

Using the object model to import a form programmatically is equivalent to performing a merge operation in the user interface.

Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Applies to