AddConnector

AddConnector(ShapeType, float, float, float, float)

Creates a new connector shape with default template styling and adds it to the end of the shape collection.

public IConnector AddConnector(ShapeType shapeType, float x, float y, float width, float height)
ParameterTypeDescription
shapeTypeShapeTypeThe ShapeType of the connector shape to add.
xSingleThe x-coordinate of the connector’s frame, in points.
ySingleThe y-coordinate of the connector’s frame, in points.
widthSingleThe width of the connector’s frame, in points.
heightSingleThe height of the connector’s frame, in points.

Return Value

The newly created IConnector.

See Also


AddConnector(ShapeType, float, float, float, float, bool)

Creates a new connector shape and adds it to the end of the shape collection, optionally applying default template styling.

public IConnector AddConnector(ShapeType shapeType, float x, float y, float width, float height, 
    bool createFromTemplate)
ParameterTypeDescription
shapeTypeShapeTypeThe ShapeType of the connector shape to create.
xSingleThe x-coordinate of the connector’s frame, in points.
ySingleThe y-coordinate of the connector’s frame, in points.
widthSingleThe width of the connector’s frame, in points.
heightSingleThe height of the connector’s frame, in points.
createFromTemplateBooleanTrue to apply default template styling (non-empty name, simple style); false to create the connector with default property values.

Return Value

The newly created IConnector.

See Also