[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.EndArrowheadWidth

EndArrowheadWidth Property

EndArrowheadWidth

Gets or sets the width of the arrowhead at the end of the specified line.

Use this method to read the current end arrowhead width configured for the line.

Declaration
ArrowheadWidth EndArrowheadWidth { get; set; }
Property EndArrowheadWidth As ArrowheadWidth
Examples
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.EndArrowheadStyle = ArrowheadStyle.Triangle;
line.EndArrowheadWidth = ArrowheadWidth.Wide;
ArrowheadWidth width = line.EndArrowheadWidth;