_Application.OnRepeat(String, String) Method

Definition

Sets the Repeat menu item and the name of the procedure that will run if you choose the Repeat command (Edit menu) after running the procedure that sets this property.

public:
 void OnRepeat(System::String ^ Text, System::String ^ Procedure);
public void OnRepeat (string Text, string Procedure);
Public Sub OnRepeat (Text As String, Procedure As String)

Parameters

Text
String

Required String. The text that appears with the Repeat command (Edit menu).

Procedure
String

Required String. The name of the procedure that will be run when you choose the Repeat command (Edit menu).

Remarks

If a procedure doesn’t use the OnRepeat method, the Repeat command repeats the procedure that was run most recently.

The procedure must use the OnRepeat and OnUndo(String, String) methods last, to prevent the repeat and undo procedures from being overwritten by subsequent actions in the procedure.

Applies to