ImageEn, unit iexRichEdit

TIERichEdit.CanRedo

TIERichEdit.CanRedo

Declaration

property CanRedo: Boolean;

Description

Returns true if the user can call Redo to reapply the previous undo.

Rich Edit Identifier: EM_CANREDO

Example

// Enable undo buttons
btnUndo.Enabled := IERichEdit1.CanUndo;
btnRedo.Enabled := IERichEdit1.CanRedo;