Hi to everyone.
I've got a tiny (I hope) problem again, and I don't know how to obtain access to some presentation properties provided by PowerPoint (however I don't even know how to google it or search it at the site :( ) from C#. Let me explain. We can access a TextRange
property both in C# and VBA, via an interop assembly and ms-office-built-in VBA editor respectively. It's ok, but this property contains two same-named entities - Runs
. VBA allows to access it as a method and as a property (moreover, Runs
property object insides are useful), but the property Runs
in not accessible via the interop assembly, Runs()
method can be accessed only (and it returns text run objects). I've digged in the interop assembly using .NET Reflector but I have not found anything related to the Runs
property (though properties with different unique rather than methods names have own get_Property()
and set_Property()
methods). It seems that the interop assembly is missing the Runs
property for TextRange
interface. Frankly, I'm not sure. :(
Can I somehow obtain the access Runs
property from C#? I'm not familiar with COM, etc, and I hope for your help. Thanks.