Hey
I am trying to access the lines stored in a PolyLine:
poly = (IPolyLine)(thePolyShape.Lines[0]);
In c++ SDK this works, but in .Net the thePolyShape.Lines (without indexing [i] ) already returns an Object of type PolyLine and if the index is used it tries to access the Points stored in that PolyLine. Normally thePolyShape.Lines should return an array of PolyLines! The same problem exists with that: thePolyLine.Pts[0] (trying to access the points stored in a PolyLine Object)
Thx in Advance
Greets, Michbeck