PictureBullet Property

Word Developer Reference

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.

Visual Basic for Applications
  Sub PicBullet()
    ActiveDocument.ListTemplates(1) _
    .ListLevels(1) _
    .PictureBullet.Width = InchesToPoints(0.25)
End Sub

See Also