Shape.ConnectorFormat property (Project)

Gets a ConnectorFormat object that contains connector formatting properties. Applies to a Shape that represents a connector. Read-only ConnectorFormat.

Syntax

expression.ConnectorFormat

expression A variable that represents a Shape object.

Remarks

Note

In Project, the connect and disconnect methods don't work for a ConnectorFormat object. So, the RerouteConnections method and the BeginConnected, BeginConnectedShape, BeginConnectedSite, EndConnected, EndConnectedShape, and EndConnectedSite properties have no meaning.

For example, in the following code snippet, the BeginConnect method gives a run-time error 13, 'Type mismatch'.

Set connectorShape = oReport.Shapes.AddConnector(msoConnectorCurve, 100, 250, 150, 280)

With connectorShape
    ' Type mismatch error:
    .ConnectorFormat.BeginConnect ConnectedShape:=oReport.Shapes(5), _
        ConnectionSite:=1
    .ConnectorFormat.EndConnect ConnectedShape:=oReport.Shapes(6),_
        ConnectionSite:=1
End With

Property value

CONNECTORFORMAT

See also

Shape Object AddConnector Method ConnectorFormat

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.