CalloutFormat.CustomDrop method (Publisher)

Sets the vertical distance from the edge of the text bounding box to the place where the callout line attaches to the text box.

Syntax

expression.CustomDrop (Drop)

expression A variable that represents a CalloutFormat object.

Parameters

Name Required/Optional Data type Description
Drop Required Variant The drop distance. Numeric values are evaluated in points; strings can be in any units supported by Microsoft Publisher (for example, "2.5 in").

Remarks

The drop distance is normally measured from the top of the text box. However, if the AutoAttach property is set to True, and the text box is to the left of the origin of the callout line (the place to which the callout points), the drop distance is measured from the bottom of the text box.

Example

This example sets the custom drop distance to 14 points, and specifies that the drop distance always be measured from the top. For the example to work, the third shape in the active publication must be a callout.

With ActiveDocument.Pages(1).Shapes(3).Callout 
 .CustomDrop Drop:=14 
 .AutoAttach = False 
End With 

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.