aboutsummaryrefslogtreecommitdiffstats
path: root/test-data/diagram/SimpleMacro.vba
blob: 7fcf1fdb4fae8a9289e5ac5454fbae011d988480 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
Sub TestMacro()
'
' TestMacro Macro
' This is a test macro
'

'
    With ActiveDocument.Pages(1).Shapes(1)
        .Text = "This is a macro vector graphics drawing"
    End With
End Sub