TImageEnVect.ObjPolylineClosed
Declaration
property ObjPolylineClosed[hobj: integer]: boolean;
Description
ObjPolylineClosed is True if we want close the polyline (so it is like a polygon).
hobj is the ID of the object. You can also specify IEV_NEXT_INSERTED_OBJECT (-1) which refers to the next object to be inserted or IEV_PREVIOUS_INSERTED_OBJECT (-2) for the last object inserted.
See Also
◼PolylineClosingModeTransition Information
If you are transitioning your code to
TImageEnView Layers, instead of ObjPolylineClosed, use:
TIEPolylineLayer.PolylineClosed
TIEPolylineLayer( ImageEnView1.CurrentLayer ).PolylineClosed := True;
ImageEnView1.Update();