_XDocument2.ImportFile(String) Method

Definition

Imports the specified form into the current form.

public:
 void ImportFile(System::String ^ bstrFileURI);
public void ImportFile (string bstrFileURI);
abstract member ImportFile : string -> unit
Public Sub ImportFile (bstrFileURI As String)

Parameters

bstrFileURI
String

The Uniform Resource Identifier (URI) of the form that is to be imported (merged) into the currently open form.

Implements

Examples

In the following example, the ImportFile method of the XDocument object is used to import a form:

thisXDocument.<span class="label">ImportFile</span>(@"C:\SomeOtherForm.xml");

Remarks

Using the object model to programmatically import a form 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