ConnectorFormat.BeginConnected 属性 (Publisher)
返回一个 MsoTriState 常量,该常量指示指定连接符的起点是否连接到形状。 此为只读属性。
语法
表达式。BeginConnected
表达 一个代表 ConnectorFormat 对象的变量。
返回值
MsoTriState
备注
BeginConnected 属性值可以是在 Microsoft Office 类型库中声明 MsoTriState 常量之一。
使用 EndConnected 属性可确定连接符的终点是否连接到形状。
示例
如果当前出版物中第一页上的第三个形状是一个连接符,其起点连接到某个形状,本示例将存储连接位置编号,存储对连接形状的引用,然后断开连接符起点与形状的连接。
Dim intSite As Integer
Dim shpConnected As Shape
With ActiveDocument.Pages(1).Shapes(3)
' Test whether shape is a connector.
If .Connector Then
With .ConnectorFormat
' Test whether connector is connected to another shape.
If .BeginConnected Then
' Store connection site number.
intSite = .BeginConnectionSite
' Set reference to connected shape.
Set shpConnected = .BeginConnectedShape
' Disconnect connector and shape.
.BeginDisconnect
End If
End With
End If
End With
支持和反馈
有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。