Skip to content

Redo - DFBaseTextEdit

Redoes the last operation

Type: Procedure

Syntax

Procedure Redo

Call Example

Send Redo

Description

This property has no effect if control is not paged.

Sample

This sample redoes the last operation of control oTextEdit1.

send Redo of oTextEdit1

Sample

This sample checks if a redo operation can be performed in the oTextEdit1 control using pbCanRedo. If so, it sends the Redo message to the control.

Procedure RedoIfPossible
    if (pbCanRedo(oTextEdit1) = True) ;
        send Redo of oTextEdit1
End_Procedure  // RedoIfPossible