Skip to content

Instantly share code, notes, and snippets.

@taesiri
Last active August 29, 2015 14:11
Show Gist options
  • Save taesiri/c7eb0edfab02690578a3 to your computer and use it in GitHub Desktop.
Save taesiri/c7eb0edfab02690578a3 to your computer and use it in GitHub Desktop.
Change Font VBA
Sub Titre()
On Error Resume Next
With ActivePresentation
For i = 1 To .Slides.Count
With .Slides(i).Shapes("Slide Number Placeholder 5").TextFrame2
.TextRange.Font.Name = "IPT Lotus"
.TextRange.Font.Size = 18
.TextRange.Font.Bold = msoTrue
End With
Next i:
End With
End Sub
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment