Last active
August 29, 2015 14:26
-
-
Save walkergv/1ed96ccfa436729213ce to your computer and use it in GitHub Desktop.
List layouts of each PowerPoint slide in a deck using a Macro.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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