Note
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
Represents bullet formatting.
Example
Use the Bulletproperty to return the BulletFormat object. The following example sets the bullet size and color for the paragraphs in shape two on slide one in the active presentation.
With ActivePresentation.Slides(1).Shapes(2)
With .TextFrame.TextRange.ParagraphFormat.Bullet
.Visible = True
.RelativeSize = 1.25
.Character = 169
With .Font
.Color.RGB = RGB(255, 255, 0)
.Name = "Symbol"
End With
End With
End With
Methods
| Name |
|---|
| Picture |
Properties
| Name |
|---|
| Application |
| Character |
| Font |
| Number |
| Parent |
| RelativeSize |
| StartValue |
| Style |
| Type |
| UseTextColor |
| UseTextFont |
See also
PowerPoint Object Model Reference
Support and feedback
Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.