UseTextFont Property
Applies To
BulletFormat object.
Description
True if the specified bullets are set to the font of the first text character in the paragraph. False if the specified bullets are set to a custom font. Read/write Long.
Remarks
You cannot explicitly set this property to False. Setting the bullet format font (using the Name property of the Font object) sets this property to False. When UseTextFont is False, you can set it to True to reset the bullet format to the default font.
See Also
UseTextColor property.
Example
This example resets bullets in shape two on slide one in the active presentation to their default character, font, and color.
With ActivePresentation.Slides(1).Shapes(2)
With .TextFrame.TextRange.ParagraphFormat.Bullet
.RelativeSize = 1
.UseTextColor = True
.UseTextFont = True
.Character = 8226
End With
End With