Document.Open 事件 (2007 system)

更新:2007 年 11 月

在打开文档时发生。

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

语法

声明
Public Event Open As DocumentEvents2_OpenEventHandler
用法
Dim instance As Document
Dim handler As DocumentEvents2_OpenEventHandler

AddHandler instance.Open, handler
public event DocumentEvents2_OpenEventHandler Open

示例

下面的代码示例在文档打开时显示一条消息。

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

Private Sub DocumentOpen()
    AddHandler Me.Open, AddressOf ThisDocument_Open
End Sub

Private Sub ThisDocument_Open()
    MessageBox.Show("The document has opened.")
End Sub
private void DocumentOpen()
{
    this.Open += new Microsoft.Office.Interop.Word.DocumentEvents2_OpenEventHandler(ThisDocument_Open);
}

void ThisDocument_Open()
{
    MessageBox.Show("The document has opened.");
}

权限

另请参见

参考

Document 类

Document 成员

Microsoft.Office.Tools.Word 命名空间