[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.IShapes.AddConnector

AddConnector Method

AddConnector(ConnectorType, double, double, double, double)

Creates a connector. Returns the IShape object that represents the new connector.

Declaration
IShape AddConnector(ConnectorType type, double beginX, double beginY, double endX, double endY)
Parameters
Type Name Description
ConnectorType type

The connector type to add.

double beginX

The horizontal position (in points) of the connector's starting point relative to the upper-left corner of the document.

double beginY

The vertical position (in points) of the connector's starting point relative to the upper-left corner of the document.

double endX

The horizontal position (in points) of the connector's end point relative to the upper-left corner of the document.

double endY

The veritcal position (in points) of the connector's end point relative to the upper-left corner of the document.

Returns
Type Description
IShape

The IShape object.

AddConnector(ConnectorType, IRange)

Creates a connector at the specified range on the current sheet.
The sheet of targetRange and the sheet of the shape being added must be the same sheet.
Returns the IShape object that represents the new connector.

Declaration
IShape AddConnector(ConnectorType type, IRange targetRange)
Parameters
Type Name Description
ConnectorType type

The connector type to add.

IRange targetRange

The target range of the current sheet.

Returns
Type Description
IShape

The IShape object.

AddConnector(string, ConnectorType, double, double, double, double)

Creates a connector. Returns the IShape object that represents the new connector.

Declaration
IShape AddConnector(string name, ConnectorType type, double beginX, double beginY, double endX, double endY)
Parameters
Type Name Description
string name

The connector name.

ConnectorType type

The connector type to add.

double beginX

The horizontal position (in points) of the connector's starting point relative to the upper-left corner of the document.

double beginY

The vertical position (in points) of the connector's starting point relative to the upper-left corner of the document.

double endX

The horizontal position (in points) of the connector's end point relative to the upper-left corner of the document.

double endY

The veritcal position (in points) of the connector's end point relative to the upper-left corner of the document.

Returns
Type Description
IShape

The IShape object.

AddConnector(string, ConnectorType, IRange)

Creates a connector at the specified range on the current sheet.
The sheet of targetRange and the sheet of the shape being added must be the same sheet.
Returns the IShape object that represents the new connector.

Declaration
IShape AddConnector(string name, ConnectorType type, IRange targetRange)
Parameters
Type Name Description
string name

The connector name.

ConnectorType type

The connector type to add.

IRange targetRange

The target range of the current sheet.

Returns
Type Description
IShape

The IShape object.