Skip to content
This repository has been archived by the owner on Nov 16, 2023. It is now read-only.

Latest commit

 

History

History
60 lines (32 loc) · 1.05 KB

paragraphformat-bullet-property-powerpoint.md

File metadata and controls

60 lines (32 loc) · 1.05 KB
title keywords f1_keywords ms.prod api_name ms.assetid ms.date
ParagraphFormat.Bullet Property (PowerPoint)
vbapp10.chm576004
vbapp10.chm576004
powerpoint
PowerPoint.ParagraphFormat.Bullet
2b997a78-7791-6f08-00af-7143f94457c1
06/08/2017

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

Concepts

ParagraphFormat Object