I have a MultilineShape that closes on itself. I need to split the line at a click point. I get the first line using :
LineBaseShape newline1 = mymultiline.GetLineOnALine(StartingPoint.FirstPoint, splitpoint);
This works fine. However when I go to get the second line:
LineBaseShape newline2 = mymultiline.GetLineOnALine(StartingPoint.LastPoint, splitpoint);
I get the same line, NOT the line from the splitpoint to the endpoint going in the direction of the line.
Is this a bug? Is there a way to force this function to stay in the direction of the line? I had to do it manually vertex to vertex, which is a real pain.
Elisa