BulletFormat.Font 属性 (PowerPoint)
返回一个 Font 对象,该对象表示的字符格式。 此为只读属性。
语法
表达式。字体
表达 一个代表 BulletFormat 对象的变量。
返回值
字体
示例
以下示例为当前演示文稿第一张幻灯片的第一个形状中的文本设置格式。
With ActivePresentation.Slides(1).Shapes(1)
With .TextFrame.TextRange.Font
.Size = 48
.Name = "Palatino"
.Bold = True
.Color.RGB = RGB(255, 127, 255)
End With
End With
以下示例设置第一张幻灯片第二个形状中项目符号的颜色和字体名称。
With ActivePresentation.Slides(1).Shapes(2)
With .TextFrame.TextRange.ParagraphFormat.Bullet
.Visible = True
With .Font
.Name = "Palatino"
.Color.RGB = RGB(0, 0, 255)
End With
End With
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。