批量修改 PPT 字体样式

MSDN:https://msdn.microsoft.com/en-us/vba/powerpoint-vba/articles/font-object-powerpoint

Step 1

点击选项卡上的 开发工具 > ,随便取个名字并创建。

Step 2

复制以下代码到编辑框里边,覆盖原有内容。

Sub ChangeFont()
Dim oShape As Shape
Dim oSlide As Slide
Dim oTxtRange As TextRange
On Error Resume Next
For Each oSlide In ActivePresentation.Slides
For Each oShape In oSlide.Shapes
Set oTxtRange = oShape.TextFrame.TextRange
If Not IsNull(oTxtRange) Then
With oTxtRange.Font
'──────────────────────────────
.Name = "微软雅黑" '字体名称
.NameFarEast = "微软雅黑" '中文字体名称
.NameOther = "微软雅黑" '其他字体名称
.Size = 36 '字体大小
.Color.RGB = RGB(0, 0, 0) '字体颜色
.Bold = False '是否加粗
.Italic = False '是否倾斜
.Underline = False '是否有下划线
'──────────────────────────────
End With
End If
Next
Next
End Sub

Step 3

按键盘 F5 或点击上方菜单栏:运行 > 运行子过程。