如何使用Power Point中的宏对齐不同幻灯片上的图片

时间:2016-11-04 02:57:51

标签: powerpoint powerpoint-vba

我有以下宏在Power Point中一次对齐1张所选图片:

Sub Align()
      With ActiveWindow.Selection.ShapeRange 
              .Left = 50
              .Top = 100
      End With
End Sub

如果我在幻灯片中选定的图片上运行宏,则此代码有效。

但是如何为所有幻灯片的每张图片运行此脚本?

1 个答案:

答案 0 :(得分:0)

这将为你做到这一点Jose:

' PowerPoint VBA to reposition all pictures in all slides in a deck
' Written by Jamie Garroch of YOUpresent Ltd.
' http://youpresent.co.uk/

Option Explict

Sub RepositionAllPictures()
  Dim oSld As Slide
  Dim oShp as Shape
  For Each oSld in ActivePresentation.Slides
    For Each oShp in oSld.Shapes
      If oShp.Type = msoPicture Then RepositionShape oShp
      If oShp.Type = msoPlaceholder Then
        If oShp.PlaceholderFormat.ContainedType = msoPicture Or _
           oShp.PlaceholderFormat.ContainedType = msoLinkedPicture Then _
             RepositionShape oShp
      End If
    Next
  Next
End Sub

Sub RepositionShape(oShp As Shape)
  oShp.Left = 50
  oShp.Top = 100
End Sub