PowerPoint Bullet Promotion

  • Thread starter Thread starter Demetrius
  • Start date Start date
D

Demetrius

Hello all, I recently posted about setting the indent
level of bulleted text in PowerPoint programmatically from
Visual Basic .NET and a got a swift response. However,
setting the IndentLevel of the TextRange only indents the
text, I need the bullet to indent (promote) as well. The
ultimate goal of this is to create an outline-like table
of contents for the PowerPoint presentation.

Any help would be greatly appreciated.
 
Demetrius,

Activewindow.Selection.ShapeRange(1) _
.TextFrame.TextRange.Paragraphs(3).IndentLevel=3

The above code indents the text as well as the bullet point. What are you
doing differently?


--
Regards
Shyam Pillai

Handout Wizard
http://www.mvps.org/skp/how/
 
Thanks, that workes perfect. The problem I was having
before was that I was not using a spesific paragraph
Ex: Paragraph.IndentLevel (or also trying to specify a
text range) instead of Paragraphs(3).IndentLevel.
Now that I do that, it works great.

Once again, thank you for the help.
 
Back
Top