Private Sub object_EPostagePropertyDialog(ByVal Doc As Document)
object An object of type Application declared with events in a class module. For information about using events with the Application object, see Using Events with the Application Object.
Doc The name of the document to which to add electronic postage.
Example
This example displays a message when a user clicks on either the Add Electronic Postage or Print Electronic Postage button.
Private Sub AppWord_EPostagePropertyDialog(ByVal Doc As Document)
MsgBox "You have clicked on a button to " & _
"display the ePostage property dialog box."
End Sub