ListFormat.ListPictureBullet (Word)

Gibt das InlineShape -Objekt zurück, das das Bild darstellt, das als Aufzählungszeichen in einer symbolgegliederten Liste verwendet wird.


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