BulletFormat 对象 (PowerPoint)

代表项目符号的格式。

示例

使用项目符号属性返回的 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

方法

名称
Picture

属性

名称
Application
字符
Font
Number
Parent
RelativeSize
StartValue
样式
类型
UseTextColor
UseTextFont

另请参阅

PowerPoint 对象模型引用

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。