Some PIA member functions not visible in C#?

J

JamesL

I'm working with a Visio 2002 PIA and C# under VS.NET 2003 and some of the
member functions like the Documents collection get_Item(object) aren't
visible to C#. I can see them using Reflector, VB.NET and C++, but not C#.
Any ideas why this is? I haven't tried the Visio 2003 PIA yet.
 
J

JamesL

Nevermind, mystery solved. C# implements the Item property as an indexer [].

documents[stencilName]

instead of

documents.Item(stencilName)

I should have read the Office XP PIA known issues more carefully!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top