ShapeRange.ConnectorFormat property (Project)
Gets a ConnectorFormat object that contains connector formatting properties. Applies to a ShapeRange object that represents one or more connectors. Read-only ConnectorFormat.
Syntax
expression.ConnectorFormat
expression A variable that represents a 'ShapeRange' 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
ShapeRange Object AddConnector Method ConnectorFormat Object
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.