Share via


BulletFormat Interface

Represents bullet formatting.

Namespace:  Microsoft.Office.Interop.PowerPoint
Assembly:  Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)

Syntax

'Declaration
<GuidAttribute("91493497-5A91-11CF-8700-00AA0060263B")> _
Public Interface BulletFormat
'Usage
Dim instance As BulletFormat
[GuidAttribute("91493497-5A91-11CF-8700-00AA0060263B")]
public interface BulletFormat

Examples

Use the Picture(String) 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

See Also

Reference

BulletFormat Members

Microsoft.Office.Interop.PowerPoint Namespace