[]
Specifies the corner style applied where two lines intersect.
Use this enumeration with JoinStyle to control how shape or connector line corners are rendered.
public enum LineJoinStyle
Public Enum LineJoinStyle
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.JoinStyle = LineJoinStyle.Round;
| Name | Description |
|---|---|
| Bevel | Specifies the corners where the two lines intersect are cut off at a 45 degree angle. |
| Miter | Specifies the corners where the two lines intersect are squared off. |
| Round | Specifies the corners where the two lines intersect are rounded. |