ShapeRange.ConnectorFormat 属性 (PowerPoint)
返回一个 ConnectorFormat 对象,该对象包含连接器格式设置属性。 适用于表示连接线的 形状 或 ShapeRange 对象。 此为只读属性。
语法
表达式。ConnectorFormat
表达 一个代表 ShapeRange 对象的变量。
返回值
ConnectorFormat
示例
本示例向 myDocument 中添加两个矩形,用一个连接符连接这两个矩形,并自动将连接符路径修改为最短路径,然后断开矩形间的连接符。
Set myDocument = ActivePresentation.Slides(1)
Set s = myDocument.Shapes
Set firstRect = s.AddShape(msoShapeRectangle, 100, 50, 200, 100)
Set secondRect = s.AddShape(msoShapeRectangle, 300, 300, 200, 100)
With s.AddConnector(msoConnectorCurve, 0, 0, 0, 0).ConnectorFormat
.BeginConnect firstRect, 1
.EndConnect secondRect, 1
.Parent.RerouteConnections
.BeginDisconnect
.EndDisconnect
End With
另请参阅
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。