DocumentBase.New 事件

在创建新文档时发生。

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

语法

声明
Public Event New As DocumentEvents2_NewEventHandler
public event DocumentEvents2_NewEventHandler New

备注

此事件仅在从模板创建新文档时引发。

示例

下面的代码示例创建一个事件处理程序,该处理程序会在创建新文档时显示一条消息。 若要使用此示例,请从 Word 模板中的 ThisDocument 类运行此示例。

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.");
}

.NET Framework 安全性

请参见

参考

DocumentBase 类

Microsoft.Office.Tools.Word 命名空间