[]
Specifies the length of the arrowhead at the end of a line.
Used with BeginArrowheadLength and EndArrowheadLength to control the arrowhead size on shape or connector lines.
public enum ArrowheadLength
Public Enum ArrowheadLength
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.BeginArrowheadStyle = ArrowheadStyle.Triangle;
line.BeginArrowheadLength = ArrowheadLength.Long;
line.EndArrowheadStyle = ArrowheadStyle.Triangle;
line.EndArrowheadLength = ArrowheadLength.Short;
| Name | Description |
|---|---|
| Long | Specifies a long arrow. |
| Medium | Specifies a medium arrow. |
| Short | Specifies a short arrow. |