Skip to content

Instantly share code, notes, and snippets.

@walkergv
Last active August 29, 2015 14:26
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 walkergv/1ed96ccfa436729213ce to your computer and use it in GitHub Desktop.
Save walkergv/1ed96ccfa436729213ce to your computer and use it in GitHub Desktop.
List layouts of each PowerPoint slide in a deck using a Macro.
Public Sub LayoutDebug()
Dim oPres As Presentation
Dim oSld As Slide
Set oPres = ActivePresentation
For Each oSld In oPres.Slides
Debug.Print oSld.SlideIndex & " - " & oSld.CustomLayout.Name
Next
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment