Message 1 of 21
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
This should be so simple, but I can't figure out how to do it. All I want to do is change the Text Height of "DEFAULT-ANSI" using VBA for the active drawing file. See screenshot.
Sub TextSize()
' Set a reference to the drawing document.
' This assumes a drawing document is active.
Dim oDrawDoc As DrawingDocument
Set oDrawDoc = ThisApplication.ActiveDocument
' Set a reference to the active sheet.
Dim oActiveSheet As Sheet
Set oActiveSheet = oDrawDoc.ActiveSheet
' Code to change the Text Height from 0.120 to .080.
End Sub
Solved! Go to Solution.