ImageEn, unit iexRichEdit |
|
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
// Enable undo buttons
btnUndo.Enabled := IERichEdit1.CanUndo;
btnRedo.Enabled := IERichEdit1.CanRedo;