Application.EPostageInsert 事件 (Word)

当用户在文档中插入电子邮政时发生。

语法

表达式EPostageInsert (Doc)

expression:表示 Application 对象的变量。

有关对 Application 对象使用事件的信息,请参阅 将事件与 Application 对象配合使用

参数

名称 必需/可选 数据类型 说明
Doc 必需 Document 要添加电子邮政的文档名称。

示例

在文档中插入电子邮政时,以下示例显示一条消息。

Private Sub AppWord_EPostageInsert(ByVal Doc As Document) 
 MsgBox "You just inserted electronic postage into your document." 
End Sub

另请参阅

Application 对象

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。