Repeat Method Example

This example inserts the text "Hello" followed by two paragraphs (the second typing action is repeated once).

Selection.TypeText "Hello"
Selection.TypeParagraph
Repeat

This example repeats the last command three times (if it can be repeated).

On Error Resume Next
If Repeat(3) = True Then StatusBar = "Action repeated"