_ExternalApplication.Close 方法

关闭指定的 Microsoft InfoPath 表单。

命名空间:  Microsoft.Office.Interop.InfoPath.SemiTrust
程序集:  Microsoft.Office.Interop.InfoPath.SemiTrust(位于 Microsoft.Office.Interop.InfoPath.SemiTrust.dll 中)

语法

声明
Sub Close ( _
    bstrDocumentURI As String _
)
用法
Dim instance As _ExternalApplication
Dim bstrDocumentURI As String

instance.Close(bstrDocumentURI)
void Close(
    string bstrDocumentURI
)

参数

  • bstrDocumentURI
    类型:System.String

    该字符串值指定表单的统一资源标识符 (URI)。

备注

Close 方法可在不退出 InfoPath 应用程序的情况下关闭当前打开的表单。使用 Close 方法时,表单将无条件关闭,这意味着不会保存对表单内的数据所做的任何更改。

重要

只能由从表单模板打开的表单访问此成员,已使用"表单选项"对话框"安全和信任"类别将该模板配置为以完全信任状态运行。此成员要求直接调用方的完全信任并且不能由部分信任的代码使用。有关更多信息,请参阅 MSDN 上的"使用部分信任的代码中的库"。

示例

在以下示例(用 C# 编程语言编写)中,ExternalApplication 对象的 Close 方法用于关闭当前打开的表单:

private void AutomateInfoPathForm()
{
 ExternalApplication infoPath = new ExternalApplicationClass();
 // Open an InfoPath form.
 infoPath.Open(@"C:\My Forms\Form1.xml", 1);
 // Close the InfoPath form.
 infoPath.Close(@"C:\My Forms\Form1.xml");
 // Quit the InfoPath application.
 infoPath.Quit();
}

备注

上面的示例假定正在使用 Microsoft.Office.Interop.InfoPath 命名空间并引用 Microsoft InfoPath 3.0 类型库。

另请参阅

引用

_ExternalApplication 接口

_ExternalApplication 成员

Microsoft.Office.Interop.InfoPath.SemiTrust 命名空间