BulletFormat Object

ParagraphFormat
BulletFormat
Font

Represents bullet formatting.

Using the BulletFormat Object

Use the Bullet property to return the BulletFormat object. The following example sets the bullet size and color for the paragraphs in shape two on slide one in the active presentation.

With ActivePresentation.Slides(1).Shapes(2)
    With .TextFrame.TextRange.ParagraphFormat.Bullet
        .Visible = True
        .RelativeSize = 1.25
        .Character = 169
        With .Font
            .Color.RGB = RGB(255, 255, 0)
            .Name = "Symbol"
        End With
    End With
End With

Properties | Application Property | Character Property | Font Property | Number Property | Parent Property | RelativeSize Property | StartValue Property | Style Property | Type Property | UseTextColor Property | UseTextFont Property

Methods | Picture Method

Parent Objects | ParagraphFormat Object

Child Objects | Font Object