ListPictureBullet 属性

       

返回一个 InlineShape 对象,该对象代表在图片项目符号列表中作为项目符号的图片。

expression.ListPictureBullet

expression   必需。该表达式返回一个 ListFormat 对象。

示例

本示例设置选定图片项目符号的高度和宽度。本示例假定文档中的插入点位于包含图片项目符号的段落中。

Sub ListPictBullet()
    With Selection.Range.ListFormat.ListPictureBullet
        .Width = InchesToPoints(Inches:=0.5)
        .Height = InchesToPoints(Inches:=0.05)
    End With
End Sub