BulletFormat2 Object (Office)

Represents bullet formatting.

Example

The following example sets the bullet size and color for the paragraphs in shape two on slide one in the active PowerPoint presentation.

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

See Also

Concepts

BulletFormat2 Object Members

Object Model Reference