// Remove the last point from the selected polyline hObj := ImageEnVect1.SelObjects[ 0 ]; ImageEnVect1.RemovePolyLinePoint( hObj , ImageEnVect1.ObjPolylinePointsCount[ hObj ] - 1 );
If you are transitioning your code to TImageEnView Layers, instead of RemovePolyLinePoint, use: TIEPolylineLayer.RemovePoint TIEPolylineLayer( ImageEnView1.CurrentLayer ).RemovePoint(); ImageEnView1.Update();