私はパワーポイント2013のプレゼンテーションにいくつかのことをしたいと思います:
- フォントをすべてのテキストに「TimesNewRoman」サイズ53、太字に変更します
- 前の段落の間隔を0に変更します
- スライドサイズを27.508x19.05cmに変更します
これは私が持っているものです:
Sub use()
Dim oSl As Slide
Dim osh As Shape
For Each oSl In ActivePresentation.Slides
For Each osh In oSl.Shapes
If osh.HasTextFrame Then
With osh.TextFrame.TextRange
.ParagraphFormat.Alignment = ppAlignCenter
.ParagraphFormat.SpaceBefore = 0
End With
With osh.TextFrame.TextRange
With .Font
.Name = "Times New Roman"
.Italic = False
.Size = "53"
End With
End With
With ActivePresentation.PageSetup
.SlideHeight = 19.05
.SlideWidth = 27.508
End If
Next
Next ' slide
End Sub