[]
Specifies the width of the arrowhead at the end of a line.
Used with BeginArrowheadWidth and EndArrowheadWidth to control the arrowhead width on shape or connector lines.
public enum ArrowheadWidth
Public Enum ArrowheadWidth
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.BeginArrowheadStyle = ArrowheadStyle.Triangle;
line.BeginArrowheadWidth = ArrowheadWidth.Wide;
line.EndArrowheadStyle = ArrowheadStyle.Triangle;
line.EndArrowheadWidth = ArrowheadWidth.Narrow;
| Name | Description |
|---|---|
| Medium | Specifies a medium arrow. |
| Narrow | Specifies a narrow arrow. |
| Wide | Specifies a wide arrow. |