[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ArrowheadLength

ArrowheadLength Enum

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.

Namespace: GrapeCity.Documents.Excel.Drawing
Assembly: DS.Documents.Excel.dll
Syntax
public enum ArrowheadLength
Public Enum ArrowheadLength
Examples
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;

Fields

Name Description
Long

Specifies a long arrow.

Medium

Specifies a medium arrow.

Short

Specifies a short arrow.