ConnectorFormat.BeginDisconnect 方法 (Publisher)
断开指定连接符的起点与其连接的形状之间的连接。
语法
表达式。BeginDisconnect
表达 一个代表 ConnectorFormat 对象的变量。
备注
此方法不会更改连接器的大小或位置;连接器的开头仍位于连接站点上,但不再连接。
使用 该连接符 分离从形状的连接符的终点。
示例
本示例将两个矩形添加到当前出版物的第一页,并用一个连接符将它们连接,再按最短的路径自动重置连接符,然后将连接符从两个矩形间断开。
Dim shpRect1 As Shape
Dim shpRect2 As Shape
With ActiveDocument.Pages(1).Shapes
' Add two new rectangles.
Set shpRect1 = .AddShape(Type:=msoShapeRectangle, _
Left:=100, Top:=50, Width:=200, Height:=100)
Set shpRect2 = .AddShape(Type:=msoShapeRectangle, _
Left:=300, Top:=300, Width:=200, Height:=100)
' Add a new connector.
With .AddConnector(Type:=msoConnectorCurve, _
BeginX:=0, BeginY:=0, EndX:=0, EndY:=0) _
.ConnectorFormat
' Connect the new connector to the two rectangles.
.BeginConnect ConnectedShape:=shpRect1, ConnectionSite:=1
.EndConnect ConnectedShape:=shpRect2, ConnectionSite:=1
' Reroute the connector to create the shortest path.
.Parent.RerouteConnections
' Disconnect the new connector from the rectangles but
' leave in place.
.BeginDisconnect
.EndDisconnect
End With
End With
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。