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.
Default: ieumSeparated
Example
ImageEnVect1.ObjUndoMode := ieumShared;
ImageEnVect1.ObjAutoUndo := True;
ImageEnVect1.Proc.UndoLimit := 10;
Now you can undo image processing or vectorial objects by 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