Skip to content

pbCanRedo - DfBaseRichEdit

Determines whether a redo operation can be performed

Type: Property
Access: Read-Only
Data Type: Boolean
Parameters: None

Syntax

Property Boolean pbCanRedo
Access Type Syntax
Read Access: Get pbCanRedo to BooleanVariable

Description

Determines whether a redo operation can be performed in the control.

This property has no effect if control is not paged.

Sample

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

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