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!
 
Top