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.
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.