I am using C# and VS2008. If I open a pre-existing Powerpoint file in C#, what do I need to do to be able to read what the text animations are for each slide? I think I can use Office Primary Interop Assemblies to handle PowerPoint, but what property would be used for text animations?
Share
I’m really pretty useless at animation coding, but this should give you a start:
Each slide has a TimeLine
The TimeLine has a MainSequence that contains most of the animations on the slide (there are also any number of interactive sequences, but let’s not complicate things that far).
Each member(.Item) of the MainSequence has various properties like .EffectType and also .Shape (which points back to the shape the animation is applied to.