StartValue 属性

       

BulletFormat 对象的 Type 属性设置为 ppBulletNumbered 时,返回或设置项目符号列表的开始值。该值的范围是 1 到 32767。可读写。Integer 类型。

示例

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

With ActivePresentation.Slides(1).Shapes(2).TextFrame
    With .TextRange.ParagraphFormat.Bullet
        .Type = ppBulletNumbered
        .StartValue = 5
    End With
End With