Document.Redo event (Publisher)
Occurs when reversing the last action that was undone.
Syntax
expression.Redo
expression A variable that represents a Document object.
Remarks
The Redo event occurs immediately after the action is redone.
If multiple actions are redone, the Redo event occurs only once, after all the actions are complete.
For more information about using events with the Document object, see Using events with the Document object.
Example
This example displays a message when a user chooses Undo on the Standard toolbar or selects Redo from the Edit menu. For this routine to work with the current publication, you must put it in the ThisDocument module.
Private Sub DocPub_Redo()
MsgBox "Your last undo has been reversed."
End Sub
To trap this event from a non-Microsoft Publisher project, you must place the following code in the General Declarations section of your module and run the InitiatePubApp routine.
Private WithEvents DocPub As Publisher.Document
Sub InitiatePubApp()
Set DocPub = Publisher.ActiveDocument
End Sub
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.