I use win32com to handle office document in Python. There is no way to know what method does an Object have in win32com. (In general, we can fetch properties or methods by DIR(OBJ) in Python ) So, if we want to know what properties or methods does my powerpoint document have , just go to look up MSDN
however , I have a powerpoint file contains lots of object. but i don't know what name or type is it.
for example ,when i want to access text in powerpoint i can use Presentation.Slide.Textframe.TextRange.Text
to access it.
How about formula??? if i want to access it? Is there anyway when I click mouse on the object in my powerpoint file, and then show what type of the object is?
Thanks you all in advance.