PowerPoint Bullet Promotion

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

Shyam

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/
 
D

Demetrius

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.
 

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