[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ArrowheadWidth

ArrowheadWidth Enum

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.

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

Fields

Name Description
Medium

Specifies a medium arrow.

Narrow

Specifies a narrow arrow.

Wide

Specifies a wide arrow.