Word 2000: Determine if a Selection object format is Bullets

V

VBA Coder

Does anyone know how I can determine if my Selection object has the bullet
formatting applied to it? I am trying to apply bullets to a Selection
object, but I have to first determine if the Selection object already has
Bullets applied, and if so, I will not apply Bullets.
 
P

Perry

To remove the bullets, you can use something like

With Selection.Range.ListFormat
'if bullets, toggle them
If .CountNumberedItems > 0 Then .ApplyBulletDefault
End With

Krgrds,
Perry
 

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