Bullet in word

F

Fabrice

Hi

I use VB in Word97 and i would like to recognize 'bullets' when i parse
the text. Can anyone give me the name of the object and his methods and
properties ?

thanx,

fab.
 
D

Dave Lett

Hi Fabrice,

I think the following will get you started:

Dim oList As List
For Each oList In ActiveDocument.Lists
If oList.ListParagraphs(1).Range.ListFormat.ListType = wdListBullet Then
MsgBox "Bulleted list."
End If
Next oList

HTH
 

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