ExternalApplication Interface
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.
Represents the Microsoft InfoPath application.
public interface class ExternalApplication : Microsoft::Office::Interop::InfoPath::_ExternalApplication2
[System.Runtime.InteropServices.Guid("096CD772-0786-11D1-95FA-0080C78EE3BB")]
public interface ExternalApplication : Microsoft.Office.Interop.InfoPath._ExternalApplication2
type ExternalApplication = interface
interface _ExternalApplication2
Public Interface ExternalApplication
Implements _ExternalApplication2
- Derived
- Attributes
- Implements
Examples
In the following example, the ExternalApplication object is created and used to open a form:
<span class="label">ExternalApplication</span> infoPath = new ExternalApplicationClass();
// Open an InfoPath form.
infoPath.Open(@"C:\My Forms\Form1.xml", 1);
Note: The above example assumes that the Microsoft.Office.Interop.InfoPath namespace is being used and that the Microsoft InfoPath 3.0 Type Library is referenced.
Remarks
This type is a wrapper for a coclass that is required by managed code for COM interoperability. Use this type to access the members of the COM interface implemented by this coclass. For information about the COM interface, including a link to descriptions of its members, see_ExternalApplication.
The ExternalApplication object is a deprecated type that should no longer be used for automation. The Application object and the XDocument object contain the properties and methods needed for external automation of the InfoPath application.
For backward compatibility, the ExternalApplication object can be used to perform a limited set of InfoPath operations such as creating, opening, or closing a form; registering or un-registering a form template; or simply quitting the application.
Methods
CacheSolution(String) | (Inherited from _ExternalApplication2) |
Close(String) | (Inherited from _ExternalApplication2) |
New(String, Int32) | (Inherited from _ExternalApplication2) |
NewFromSolution(String) | (Inherited from _ExternalApplication2) |
NewFromSolutionWithInputParameters(String, String) |
Creates a new form using the specified form template with the specified form template and input parameters. (Inherited from _ExternalApplication2) |
Open(String, Int32) | (Inherited from _ExternalApplication2) |
Quit() | (Inherited from _ExternalApplication2) |
RegisterSolution(String, String) | (Inherited from _ExternalApplication2) |
UnregisterSolution(String) | (Inherited from _ExternalApplication2) |