Skip to content

Redo - DfBaseRichEdit

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 oRichEdit1.

send Redo of oRichEdit1

Sample

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

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