共用方式為


Document.Open 事件 (2007 系統)

更新: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 命名空間