次の方法で共有


ConnectorFormat.BeginConnected プロパティ (Publisher)

指定したコネクタの先頭が図形に接続されているかどうかを示す MsoTriState 定数を返します。 読み取り専用です。

構文

BeginConnected

ConnectorFormat オブジェクトを表す変数。

戻り値

MsoTriState

注釈

BeginConnected プロパティの値には、Microsoft Office のタイプ ライブラリで宣言されている msotristate クラス の定数のいずれかを指定できます。

コネクタの終点が図形に接続されているかどうかを調べるには、 EndConnected プロパティを使用します。

作業中の文書の最初のページの 3 番目の図形が、図形に始点が接続するコネクタの場合、次の使用例は、結合点の番号を保存し、結合した図形への参照を保存し、次に、コネクタの始点と図形の接続を解除します。

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 のサポートおよびフィードバックを参照してください。