Hello,
I am using ImageEnVect and am allowing user to add rectangle object using this code:
ievMain.ObjKind[IEV_NEXT_INSERTED_OBJECT] := iekBOX;
ObjID := ievMain.AddNewObject;
ievMain.ObjLeft[ObjID] := 0;
ievMain.ObjTop[ObjID] := 0;
ievMain.ObjWidth[ObjID] := 50;
ievMain.ObjHeight[ObjID] := 50;
ievMain.SelObjects[ObjID];
Things are working as expected.
But the problem is I am not able to move selected Obj behind or above other objects. How to achieve this?
TIA
Yogi Yang