ListLevel.PictureBullet property (Word)
Returns an InlineShape object that represents a picture bullet.
Syntax
expression. PictureBullet
expression An expression that returns a 'ListLevel' object.
Example
This example returns the picture bullet for the first list in the active document and sets the picture bullet's width to 0.25 inch. To see this example, first run the code example for the ApplyPictureBullet method.
Sub PicBullet()
ActiveDocument.ListTemplates(1) _
.ListLevels(1) _
.PictureBullet.Width = InchesToPoints(0.25)
End Sub
See also
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.