Shapes.AddCallout method (PowerPoint)
Creates a borderless line callout. Returns a Shape object that represents the new callout.
expression. AddCallout
( _Type_
, _Left_
, _Top_
, _Width_
, _Height_
)
expression A variable that represents a Shapes object.
Name | Required/Optional | Data type | Description |
---|---|---|---|
Type | Required | MsoCalloutType | The type of callout line. |
Left | Required | Single | The position, measured in points, of the left edge of the callout's bounding box relative to the left edge of the slide. |
Top | Required | Single | The position, measured in points, of the top edge of the callout's bounding box relative to the top edge of the slide. |
Width | Required | Single | The width of the callout's bounding box, measured in points. |
Height | Required | Single | The height of the callout's bounding box, measured in points. |
Shape
You can insert a greater variety of callouts by using the AddShape method.
This example adds a borderless callout with a freely-rotating one-segment callout line to myDocument and then sets the callout angle to 30 degrees.
Sub NewCallout()
Dim sldOne As Slide
Set sldOne = ActivePresentation.Slides(1)
sldOne.Shapes.AddCallout(Type:=msoCalloutTwo, Left:=50, Top:=50, _
Width:=200, Height:=100).Callout.Angle = msoCalloutAngle30
End Sub
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.