BulletFormat.StartValue 属性 (PowerPoint)

BulletFormat 对象的 Type 属性设置为 ppBulletNumbered 时,返回或设置项目符号列表的起始值。 读/写。

语法

expressionStartValue

表达 一个代表 BulletFormat 对象的变量。

返回值

整数

备注

StartValue 属性的值必须在 1 到 32767 范围。

示例

本示例将第一张幻灯片第二个形状指定的文本框中的项目符号起始值设置为 5。

With ActivePresentation.Slides(1).Shapes(2).TextFrame

    With .TextRange.ParagraphFormat.Bullet

        .Type = ppBulletNumbered

        .StartValue = 5

    End With

End With


另请参阅

BulletFormat 对象

支持和反馈

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