PictureBullet Property

Microsoft Word Visual Basic

object that represents a picture bullet.

expression.PictureBullet

expression    Required. An expression that returns one of the objects in the Applies to list.

Example

This example returns the picture bullet for the first list in the active document and sets the picture bullet's width to one-quarter 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