使用英语阅读

通过


ConnectorFormat.EndConnected 属性 (Publisher)

返回一个 MsoTriState 常量,该常量指示指定连接符的末尾是否连接到形状。 此为只读属性。

语法

表达式EndConnected

表达 一个代表 ConnectorFormat 对象的变量。

返回值

MsoTriState

备注

使用 BeginConnected 属性可确定连接符的起点是否连接到形状。

EndConnected 属性值可以是一个 MsoTriState 常量声明在 Microsoft Office 类型库,如下表所示。

常量 说明
msoFalse 指定的连接符的终点不连接到形状。
msoTriStateMixed 返回值 指示 属性值为 msoTruemsoFalse 指定的形状范围中的组合。
msoTrue 指定的连接符的末端连接到形状。

示例

本示例中,如果当前出版物中第一页上的第三个形状是连接符,其终点连接到一个形状,则存储连接位置的编号并存储对连接形状的引用,然后断开连接符的终点与形状之间的连接。

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 .End Connected Then 
 
 ' Store connection site number. 
 intSite = .EndConnectionSite 
 
 ' Set reference to connected shape. 
 Set shpConnected = .EndConnectedShape 
 
 ' Disconnect connector and shape. 
 .EndDisconnect 
 End If 
 End With 
 End If 
End With 

支持和反馈

有关于 Office VBA 或本文档的疑问或反馈? 请参阅 Office VBA 支持和反馈,获取有关如何接收支持和提供反馈的指南。