BulletFormat.Picture Method
Returns a BulletFormat object that represents bullet formatting for the specified paragraph format. Read-only.
Namespace: Microsoft.Office.Interop.PowerPoint
Assembly: Microsoft.Office.Interop.PowerPoint (in Microsoft.Office.Interop.PowerPoint.dll)
Syntax
'Declaration
Sub Picture ( _
Picture As String _
)
'Usage
Dim instance As BulletFormat
Dim Picture As String
instance.Picture(Picture)
void Picture(
string Picture
)
Parameters
- Picture
Type: System.String
Examples
This example sets the bullet size and bullet color for the paragraphs in shape two on slide one in the active presentation.
With Application.ActivePresentation.Slides(1).Shapes(2).TextFrame
With .TextRange.ParagraphFormat.Bullet.Visible = True
.RelativeSize = 1.25
.Font.Color = RGB(255, 0, 255)
End With
End With