ImageEn, unit iexRichEdit

TIERichEdit.RedoName

TIERichEdit.RedoName

Declaration

property RedoName: TIEUndoName;

Description

Returns the type of the next item in the Redo queue.

Rich Edit Identifier: EM_GETREDONAME

Example

case IERichEdit1.RedoName of
  unTyping   : btnRedo.Caption := 'Redo Typing';
  unDelete   : btnRedo.Caption := 'Redo Delete';
  unDragDrop : btnRedo.Caption := 'Redo Drag/Drop';
  unCut      : btnRedo.Caption := 'Redo Cut';
  unPaste    : btnRedo.Caption := 'Redo Paste';
  unUnknown  : btnRedo.Caption := 'Redo';
end;
btnRedo.Enabled := IERichEdit1.CanRedo;