Shape.Callout (Word)
Gibt ein CalloutFormat -Objekt zurück, das Legenden Formatierungseigenschaften für die angegebene Form enthält.
Diese Eigenschaft gilt für Shape -Objekte, die Legenden darstellen.
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