Compartilhar via


CalloutFormat.AutomaticLength Method

Word Developer Reference

Specifies that the first segment of the callout line (the segment attached to the text callout box) be scaled automatically when the callout is moved.

Syntax

expression.AutomaticLength

expression   Required. A variable that represents a CalloutFormat object.

Remarks

Use the CustomLength method to specify that the first segment of the callout line retain the fixed length returned by the Length property whenever the callout is moved. Applies only to callouts whose lines consist of more than one segment (types msoCalloutThree and msoCalloutFour).

Applying this method sets the AutoLength property to True.

Example

This example switches between an automatically scaling first segment and one with a fixed length for the callout line for the first shape on the active document. For the example to work, the first shape must be a callout.

Visual Basic for Applications
  Dim docActive as Document

Set docActive = ActiveDocument With docActive.Shapes(1).Callout If .AutoLength Then .CustomLength 50 Else .AutomaticLength End If End With

See Also