[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ConnectorType

ConnectorType Enum

Specifies the type of connector to create or apply to a connector shape.

Use this enum with connector APIs such as AddConnector(ConnectorType, double, double, double, double) and Type to control whether a connector is straight, elbowed, or curved.

Namespace: GrapeCity.Documents.Excel.Drawing
Assembly: DS.Documents.Excel.dll
Syntax
public enum ConnectorType
Public Enum ConnectorType
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 20, 20, 120, 80);
connector.ConnectorFormat.Type = ConnectorType.Elbow;

Fields

Name Description
Curve

Specifies a curved connector.

Elbow

Specifies an elbow connector.

Straight

Specifies a straight line connector.