[]
Specifies the style of the arrowhead at the end of a line.
Used with BeginArrowheadStyle and EndArrowheadStyle to configure the arrowhead appearance on connectors and shape lines.
public enum ArrowheadStyle
Public Enum ArrowheadStyle
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
connector.Line.BeginArrowheadStyle = ArrowheadStyle.Triangle;
connector.Line.EndArrowheadStyle = ArrowheadStyle.Open;
| Name | Description |
|---|---|
| Diamond | Specifies a diamond-shaped arrow. |
| None | Specifies no arrowhead. |
| Open | Specifies an open arrow. |
| Oval | Specifies an oval-shaped arrow. |
| Stealth | Specifies a stealth-shaped arrow. |
| Triangle | Specifies a triangular arrow. |