Reverses the last undo operation
Syntax:
Sub Redo(Optional ByVal Levels As Long = 0)
Parameters:
Name Type Description
Levels
Long
Remarks:
The Redo method reverses the last undo operation performed in the active document.
Examples:
The following VBA example reverses the last undo operation in the active document.
Sub Reverse()
ActiveDocument.Redo 
End Sub