Please show me how to iterate ImageEnVect Polygon Objects reading each objects Point X,Y values and changing and saving the Point X,Y values.
for i:= 0 to ieVect.ObjectCount-1 do begin
if ieVect.Object[i] = Polygon then begin
for j:= 0 to ieVect.Object[i].PointsCount-1 do begin
ieVect.Object[i].Points[j].X:= ieVect.Object[i].Points[j].X+10;
end;
end;
end;
Thanks
Andy