Componentes.Terceros.TRichView/12.0.4/Demos/DelphiUnicode/Editors/Editor 1/RVUndoStr.pas
david fddb8c1dff Importación inicial con versión 12.0.4
NO HAY CÓDIGO FUENTE

git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.TRichView@1 b34d35ef-135b-4489-b9d1-9916e9c25524
2010-01-11 12:26:42 +00:00

21 lines
600 B
ObjectPascal

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.