我正在尝试创建PowerPoint 2010 VBA宏以向每张幻灯片添加文本框。 但是,使用MSOffice documentation to create a text box中的命令甚至不起作用。
Set myDocument = ActivePresentation.Slides(1)
myDocument.Shapes.AddTextbox(Type:=msoTextOrientationHorizontal, _
Left:=100, Top:=100, Width:=200, Height:=50).TextFrame _
.TextRange.Text = "Test Box"
返回
Run-time error '448':
Named argument not found
文档是错误的还是我错过了什么?
答案 0 :(得分:0)
将Type:=
替换为Orientation:=