共用方式為


Document.New 事件 (2007 系統)

更新:2007 年 11 月

在建立新文件時發生。

命名空間:  Microsoft.Office.Tools.Word
組件:  Microsoft.Office.Tools.Word.v9.0 (在 Microsoft.Office.Tools.Word.v9.0.dll 中)

語法

Public Event New As DocumentEvents2_NewEventHandler

Dim instance As Document
Dim handler As DocumentEvents2_NewEventHandler

AddHandler instance.New, handler
public event DocumentEvents2_NewEventHandler New

備註

只有從範本建立新文件時才會引發此事件。

範例

下列程式碼範例會建立事件處理常式,以便在建立新文件時顯示訊息。此範例假設程式碼是從 Microsoft Office Word 範本中執行。

這是示範文件層級自訂的範例。

Private Sub DocumentNew()
    AddHandler Me.New, AddressOf ThisDocument_New
End Sub

Private Sub ThisDocument_New()
    MessageBox.Show("The Document.New event has fired.")
End Sub
private void DocumentNew()
{
    this.New += new Microsoft.Office.Interop.Word.
        DocumentEvents2_NewEventHandler(
        ThisDocument_New);
}

void ThisDocument_New()
{
    MessageBox.Show("The Document.New event has fired.");
}

使用權限

請參閱

參考

Document 類別

Document 成員

Microsoft.Office.Tools.Word 命名空間