Document.New 事件 (2007 system)
更新: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.");
}
权限
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关更多信息,请参见通过部分受信任的代码使用库。