View Single Post
 
Old 06-29-2012, 12:51 AM
tinfanide tinfanide is offline Windows 7 64bit Office 2010 32bit
Expert
 
Join Date: Aug 2011
Posts: 312
tinfanide is on a distinguished road
Default

Quote:
Originally Posted by macropod View Post
If:

surely you already know which type they belong to??
Sorry... asking too soon. I'd forgotten ListType.

Code:
Dim oList As List
For Each oList In ActiveDocument.Lists
    If oList.Range.ListFormat.ListType = wdListSimpleNumbering Then ''' wdListSimpleNumbering / 3
          oList.Range.Select
    End If
Next oList
Reply With Quote