Skip to content

Instantly share code, notes, and snippets.

@xight
Last active June 8, 2016 05:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xight/7d34ae5424468be03baa737e60f0dbf7 to your computer and use it in GitHub Desktop.
Save xight/7d34ae5424468be03baa737e60f0dbf7 to your computer and use it in GitHub Desktop.
PowerPointで指定したShapeを最背面にし、サイズをスライド一面にし、センタリングするマクロ
Sub SetBackground()
targetNameArr = Array("Picture 6", "Content Placeholder 6")
Dim w As Integer
Dim h As Integer
w = ActivePresentation.PageSetup.SlideWidth
h = ActivePresentation.PageSetup.SlideHeight
Dim sld As Slide
Dim sh As Shape
For Each sld In ActivePresentation.Slides
For Each sh In sld.Shapes
For Each targetName In targetNameArr
If sh.Name = targetName Then
sh.Width = w
sh.Height = h
sh.ZOrder (msoSendToBack)
Set myRange = sld.Shapes.Range(Array(targetName))
myRange.Align msoAlignCenters, msoTrue
myRange.Align msoAlignMiddles, msoTrue
End If
Next
Next
Next
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment