Represents a ConnectorShape.
Syntax
var value; // Type: any
value = GC.Spread.Sheets.Shapes.ConnectorShape(worksheet, name, connectorType, beginX, beginY, endX, endY);
function ConnectorShape(
: Worksheet,
: string,
: ConnectorType,
: number,
: number,
: number,
: number
) : any;
Parameters
- worksheet
- The host sheet of the shape.
- name
- The name of shape.
- connectorType
- The type of the connector shape.
- beginX
- The x location of the start point for the connector shape.
- beginY
- The y location of the start point for the connector shape.
- endX
- The x location of the end point for the connector shape.
- endY
- The y location of the end point for the connector shape.
See Also