Componentes.Terceros.TRichView/12.0.4/Demos/DelphiUnicode/Editors/Editor 1/RVUndoStr.pas

21 lines
600 B
ObjectPascal
Raw Permalink Normal View History

unit RVUndoStr;
interface
uses RVEdit;
const RVUndoTypeNamesEn : array [TRVUndoType] of String =
(
'', // <- no undo
'removing', 'inserting', 'paragraph modification',
'editing', 'page break', 'removing page break',
'typing', 'tag modification', 'changing text style',
'inserting checkpoint', 'removing checkpoint',
'editing checkpoint','modifying', 'bullets',
'' // <- use custom undo name instead
);
implementation
end.