This example specifies that the callout line attach to the top of the text bounding box for shape one on myDocument
. For the example to work, shape one must be a callout.
Set myDocument = ActiveDocument
myDocument.Shapes(1).Callout.PresetDrop msoCalloutDropTop
This example toggles between two preset drops for shape one on myDocument
. For the example to work, shape one must be a callout.
Set myDocument = ActiveDocument
With myDocument.Shapes(1).Callout
If .DropType = msoCalloutDropTop Then
.PresetDrop msoCalloutDropBottom
ElseIf .DropType = msoCalloutDropBottom Then
.PresetDrop msoCalloutDropTop
End If
End With