CalloutFormat 对象

         
Shapes (Shape)
CalloutFormat

包含应用于行标注的属性和方法。

使用 CalloutFormat 对象

使用 Callout 属性返回单个 CalloutFormat 对象。以下示例指定的 myDocument 中第三个形状(行标注)的属性如下:

要使本示例起作用,第三个形状必须是一个标注。

Set myDocument = ActivePresentation.Slides(1)
With myDocument.Shapes(3).Callout
    .Accent = True
    .Angle = msoCalloutAngle30
    .Border = False
    .PresetDrop msoCalloutDropTop
    .Type = msoCalloutThree
End With