BulletFormat 对象

         
ParagraphFormat
BulletFormat
Font

代表项目符号的格式。

使用 BulletFormat 对象

使用 Bullet 属性返回 BulletFormat 对象。以下示例设置当前演示文稿第一张幻灯片第二个形状中段落的项目符号大小和颜色。

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