Declaration
property ObjUndoMode: TIEVUndoMode;
Description
Allows sharing of the Undo/Redo system between image processing and vectorial objects.
The default value (ieumSeparated) separates the two systems.
ImageEnVect1.ObjUndoMode := ieumShared;
ImageEnVect1.ObjAutoUndo := true;
ImageEnVect1.Proc.UndoLimit := 10;
From now you can do Undo of image processing or vectorial objects just calling:
ImageEnVect1.Proc.Undo;
ImageEnVect1.Proc.ClearUndo;
Transition Information
If you are transitioning your code to
TImageEnView Layers, instead of ObjUndoMode, see undo items of
TImageEnView.LayerOptions