[]
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.
public enum ConnectorType
Public Enum ConnectorType
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 20, 20, 120, 80);
connector.ConnectorFormat.Type = ConnectorType.Elbow;
| Name | Description |
|---|---|
| Curve | Specifies a curved connector. |
| Elbow | Specifies an elbow connector. |
| Straight | Specifies a straight line connector. |