【发布时间】:2017-03-08 10:58:05
【问题描述】:
我想将 powerpoint 2013 中的文本选择更改为粗体和“Couirier New”。我尝试使用这个 VBA 脚本来更改字体:
Sub chengeFont()
With ActiveDocument.Selection
With .Font
.Name = "Courier New"
End With
End With
End Sub
但它不起作用。有什么建议么?
【问题讨论】:
-
我不确定,但我认为它就像 selection.style.fontfamily= "Courier New" .fontstyle=Bold 或 font.bold=true
标签: vba powerpoint-2013