Skip to content

Latest commit

 

History

History
54 lines (33 loc) · 1.68 KB

Project.shaperange.connectorformat.md

File metadata and controls

54 lines (33 loc) · 1.68 KB
title ms.service ms.assetid ms.date ms.localizationpriority
ShapeRange.ConnectorFormat property (Project)
project-server
7193b3aa-2e3f-d349-c398-d30e2878ceaa
06/08/2017
medium

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

[!includeSupport and feedback]