Last active
August 29, 2015 14:11
-
-
Save taesiri/c21f14c6049be63005dd to your computer and use it in GitHub Desktop.
Do Not Indent! VBA Script for Powerpoint
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
Sub DontIndent() | |
With ActivePresentation | |
With .Slides(1).Shapes("Rec1").TextFrame2 | |
.TextRange.ParagraphFormat.LeftIndent = 0 | |
End With | |
End With | |
End Sub |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment