ImageEn, unit iexRichEdit |
|
TIERichEdit.RedoName
Declaration
property RedoName: TIEUndoName;
Description
Returns the type of the next item in the Redo queue.
Rich Edit Identifier: EM_GETREDONAME
case IERichEdit1.RedoName of
unTyping : btnRedo.Caption := 'Redo Typing';
unDelete : btnRedo.Caption := 'Redo Delet';
unDragDrop : btnRedo.Caption := 'Redo DragDrop';
unCut : btnRedo.Caption := 'Redo Cut';
unPaste : btnRedo.Caption := 'Redo Paste';
unUnknown : btnRedo.Caption := 'Redo';
end;
btnRedo.Enabled := IERichEdit1.CanRedo;