_XDocument3.ImportFile(String) 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.
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.