ShapeRange.Callout (Word)

Returns a CalloutFormat object that contains callout formatting properties for the specified shape.

This property applies to ShapeRange objects that represent callouts.


Set myDocument = ActiveDocument 
With myDocument.Shapes 
 .AddShape msoShapeOval, 180, 200, 280, 130 
 With .AddCallout(msoCalloutTwo, 420, 170, 170, 40) 
 .TextFrame.TextRange.Text = "My oval" 
 With .Callout 
 .Accent = True 
 .Border = False 
 End With 
 End With 
End With