RVUndoStr.pas
上传用户:daoqigc
上传日期:2021-04-20
资源大小:2795k
文件大小:1k
源码类别:

RichEdit

开发平台:

Delphi

  1. unit RVUndoStr;
  2. interface
  3. uses RVEdit;
  4. const RVUndoTypeNamesEn : array [TRVUndoType] of String =
  5.                  (
  6.                  '', // <- no undo
  7.                  'removing', 'inserting', 'paragraph modification',
  8.                  'editing', 'page break', 'removing page break',
  9.                  'typing', 'tag modification', 'changing text style',
  10.                  'inserting checkpoint', 'removing checkpoint',
  11.                  'editing checkpoint','modifying', 'bullets',
  12.                  '' // <- use custom undo name instead
  13.                  );
  14. implementation
  15. end.