Document.Shutdown 事件 (2007 system)

更新: 2008 年 7 月

在文档宿主项关闭时发生。

命名空间:  Microsoft.Office.Tools.Word
程序集:  Microsoft.Office.Tools.Word.v9.0(在 Microsoft.Office.Tools.Word.v9.0.dll 中)

语法

声明
Public Event Shutdown As EventHandler
用法
Dim instance As Document
Dim handler As EventHandler

AddHandler instance.Shutdown, handler
public event EventHandler Shutdown

备注

这是在卸载 Document 类时要在 Document 类中调用的最后一个事件。将此事件用于任何其他清理过程。

在文档级自定义项中,当文档宿主项关闭时,将卸载程序集的应用程序域。

在应用程序级外接程序中,文档宿主项关闭时不会卸载应用程序域。此外,基础文档对象将不再可用。若要在文档关闭之前对其进行访问,请改用 CloseEvent

示例

下面的代码示例添加一个新的 Shutdown 事件处理程序,该处理程序显示一条指出要关闭文档的消息。

此示例针对的是文档级自定义项。

Private Sub DocumentShutdown()
    AddHandler Me.Shutdown, AddressOf ThisDocument_Shutdown2
End Sub

Private Sub ThisDocument_Shutdown2(ByVal sender As Object, ByVal e As System.EventArgs)
    MessageBox.Show("The Shutdown event was raised.")
End Sub 
private void DocumentShutdown()
{
    this.Shutdown +=new EventHandler(ThisDocument_Shutdown2);

}

private void ThisDocument_Shutdown2(object sender, System.EventArgs e)
{
    MessageBox.Show("The Shutdown event was raised.");
}

权限

另请参见

参考

Document 类

Document 成员

Microsoft.Office.Tools.Word 命名空间

修订记录

日期

修订记录

原因

2008 年 7 月

添加了特定于应用程序级外接程序的其他备注。

SP1 功能更改。