BulletFormat.Character property (PowerPoint)
Returns or sets the Unicode character value that is used for bullets in the specified text. Read/write.
Syntax
expression. Character
expression A variable that represents a BulletFormat object.
Return value
Long
Example
This example sets the bullet character for shape two on slide one in the active presentation.
Set frame2 = ActivePresentation.Slides(1).Shapes(2).TextFrame
With frame2.TextRange.ParagraphFormat.Bullet
.Character = 8226
.Visible = True
End With
See also
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.