Returns a BulletFormat object that represents bullet formatting for the specified paragraph format. Read-only.
Example
This example sets the bullet size and bullet color for the paragraphs in shape two on slide one in the active presentation.
With Application.ActivePresentation.Slides(1).Shapes(2).TextFrame
With .TextRange.ParagraphFormat.Bullet
.Visible = True
.RelativeSize = 1.25
.Font.Color = RGB(255, 0, 255)
End With
End With