Excel) (ConnectorFormat.EndConnected 屬性
如果指定連接線的終點已連接到某個圖案,則本屬性值為 msoTrue。 唯讀的 MsoTriState。
語法
運算式。EndConnected
表達 代表 ConnectorFormat 物件的 變數。
範例
如果 myDocument 上第三個圖案所代表的連接線結尾連接到圖形,本範例會將連接網站編號儲存在變數 oldEndConnSite
中、將連接圖形的參照儲存在物件變數 oldEndConnShape
中,然後中斷連接線的終點與圖形的連接。
Set myDocument = Worksheets(1)
With myDocument.Shapes(3)
If .Connector Then
With .ConnectorFormat
If .EndConnected Then
oldEndConnSite = .EndConnectionSite
Set oldEndConnShape = .EndConnectedShape
.EndDisconnect
End If
End With
End If
End With
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。