ParagraphFormat.Bullet Property (PowerPoint)
Returns a BulletFormat object that represents bullet formatting for the specified paragraph format. Read-only.
Syntax
expression .Bullet
expression A variable that represents a ParagraphFormat object.
Return Value
BulletFormat
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