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 ChangeFont() | |
Const TargetFont = "Tahoma" | |
Const TargetSize = 10 | |
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
Dim Page As Page | |
Dim Shape As Shape | |
For Each Page In ActiveDocument.Pages | |
For Each Shape In Page.Shapes | |
If Shape.Type = cdrTextShape Then | |
Shape.Text.Story.Font = TargetFont |