Sub Allchange()
Dim osld As Slide, oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
With oshp.TextFrame.TextRange.Font
.Name = "楷体_GB2312"
.Size = 24
.Color.RGB = RGB(255, 0, 0)
.Bold = msoFalse
.Italic = msoFalse
.Shadow = False
End With
Next oshp
Next osld
End Sub
他的模板里就是一个背景 没有占位符
然后他用插入文本框做的一切 改不了啊 55555555555555555
Sub Allchange()
Dim osld As Slide, oshp As Shape
For Each osld In ActivePresentation.Slides
For Each oshp In osld.Shapes
With oshp.TextFrame.TextRange.Font
.Name = "楷体_GB2312"
.Size = 24
.Color.RGB = RGB(255, 0, 0)
.Bold = msoFalse
.Italic = msoFalse
.Shadow = False
End With
Next oshp
Next osld
End Sub