Re: [Ironpython-users] Calling a method on the Interop COM object

2016-01-30 Thread Slide
Out parameters are returned from the method as part of a tuple (if there is a return value already it will be in the tulle as the second item) On Sat, Jan 30, 2016, 07:38 Djordje Spasic via Ironpython-users < ironpython-users@python.org> wrote: > Thank you Stéphane!! > > That solved the problem!

[Ironpython-users] Calling a method on the Interop COM object

2016-01-30 Thread Djordje Spasic via Ironpython-users
Thank you Stéphane!! That solved the problem! Do you mind if I ask another question?Right now I am trying to call another method: FixUP.The problem with it, is that it requires a single "out" argument. Here is how I tried to call it: MapWinGIS.ShapeClass.FixUp(shape)  # raises an error below Bu