Application.EPostageInsert event (Word)

Occurs when a user inserts electronic postage into a document.

Syntax

expression.EPostageInsert (Doc)

expression A variable that represents an Application object.

For information about using events with the Application object, see Using events with the Application object.

Parameters

Name Required/Optional Data type Description
Doc Required Document The name of the document to which to add electronic postage.

Example

This example displays a message when electronic postage is inserted into a document.

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

See also

Application Object

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.