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

See also

ParagraphFormat Object

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.