Callout VBA word

1

I'm doing a macro in Visual Basic for word. I already have this code:

Set Callout = ActiveDocument.Shapes.AddCallout( _
Type:=msoCalloutThree, _
Left:=170, Top:=119.5, Width:=widthsize1, Height:=heightsize1)

Callout.Callout.Accent = msoFalse
Callout.Callout.Border = msoTrue

Callout.Callout.Angle = msoCalloutAngle30
Callout.TextFrame.TextRange = StepText1

And my callout comes out in the following way:

My question is: How can I change the direction of the arrow if I need it to go up with the macro?

Like this:

Thank you!

    
asked by Sergio Camilo 19.09.2017 в 08:22
source

0 answers