Extracting bulleted text in powerpoint 2003

  • Thread starter Thread starter Atul Bhatia
  • Start date Start date
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.
 
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
 
Back
Top