_Application.OnUndo(String, String) Method

Definition

Sets the text of the Undo and the name of the procedure that’s run if you choose the Undo command (Edit menu) after running the procedure that sets this property.

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

Parameters

Text
String

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

Procedure
String

Required String. The name of the procedure that’s run when you choose the Undo command (Edit menu).

Remarks

If a procedure doesn’t use the OnUndo method, the Undo command is disabled.

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

Applies to