ImageEn 11.4.0
Delphi 11.2
I create a Line Layer with this code:
ImageEnView1.MouseInteractLayers := [mlCreateLineLayers];
Then, in the OnNewLayer event-handler, I adjust the line properties:
TIELineLayer(ImageEnView1.CurrentLayer).LineColor := clRed;
TIELineLayer(ImageEnView1.CurrentLayer).LineWidth := 3;
TIELineLayer(ImageEnView1.CurrentLayer).StartShape := ieesArrow;
It works. But in previous ImageEn versions, I could drag the bottom-right corner ABOVE the top Layer edge to easily reverse the vertical direction of the Line Layer. This was visible if the line endings were different from each other. It seems this is no anymore possible. Or am I overseeing an additional property?