Extracting bulleted text in powerpoint 2003

A

Atul Bhatia

How can I extract a bulleted text from the powerpoint file(2003 only)
I have used .text propery in textRange but bullets were not getting
extracted through it.

I also read about the following example in powerpoint 11.0 object model

With Application.ActivePresentation.Slides(1).Shapes(2).TextFrame
With .TextRange.ParagraphFormat.Bullet
.Visible = True
.RelativeSize = 1.25
.Font.Color = RGB(255, 0, 255)
End With
End With

But the above example is inserting the bullets whereas I need to read the
file in which bullets are already there.

I couldn't locate any method that can help me do that.
 
S

Shyam Pillai

Atul,
What is it that you want to retrieve? Do you want to know bullet information
or you want to extract pictures associated with the bullets? The latter
cannot be done since there is no native support for it in the object model.

Regards,
Shyam Pillai

Animation Carbon: http://www.animationcarbon.com
 

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