Consulting

Results 1 to 2 of 2

Thread: Generate square bullet specifically?

  1. #1

    Generate square bullet specifically?

    The following works, is square bullet is the last selected bullet style from the GUI menu.
    Selection.Range.ListFormat.ApplyBulletDefault
    I would like to use syntax that will generate the square shaped bullet at all times, irregardless of the last selected bullet icons.

  2. #2
    How about
    With ListGalleries(wdBulletGallery).ListTemplates(1).ListLevels(1)
            .NumberFormat = ChrW(61607)
            .Font.Name = "Wingdings"
        End With
        Selection.Range.ListFormat.ApplyListTemplateWithLevel _
                ListTemplate:=ListGalleries(wdBulletGallery).ListTemplates(1)
    Graham Mayor - MS MVP (Word) 2002-2019
    Visit my web site for more programming tips and ready made processes
    http://www.gmayor.com

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •