Contains properties and methods that apply to line callouts.
Using the CalloutFormat Object
Use the Callout property to return a CalloutFormat object. The following example specifies the following attributes of shape three (a line callout) on myDocument
:
For this example to work, shape three must be a callout.
Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes(3).Callout
.Accent = True
.Angle = msoCalloutAngle30
.Border = False
.PresetDrop msoCalloutDropTop
.Type = msoCalloutThree
End With