mirror of
https://github.com/apache/poi.git
synced 2026-02-27 20:40:08 +08:00
13 lines
199 B
Plaintext
13 lines
199 B
Plaintext
|
|
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
|
||
|
|
|