PowerPoint VBA Macro Gives Run Time Error 448: Named argument not found

1.1k Views Asked by At

I'm trying to create a PowerPoint 2010 VBA Macro to add a text box to every slide. However, using the command from the MSOffice documentation to create a text box doesn't even work.

Set myDocument = ActivePresentation.Slides(1)
myDocument.Shapes.AddTextbox(Type:=msoTextOrientationHorizontal, _
Left:=100, Top:=100, Width:=200, Height:=50).TextFrame _
.TextRange.Text = "Test Box"

This returns

Run-time error '448':
Named argument not found

Is the documentation wrong or am I missing something?

1

There are 1 best solutions below

2
On BEST ANSWER

Replace Type:= with Orientation:=