[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.EndArrowheadStyle

EndArrowheadStyle Property

EndArrowheadStyle

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

Use this method to retrieve the current ArrowheadStyle applied to the end of a connector or shape line.

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