[]
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.
ArrowheadStyle EndArrowheadStyle { get; set; }
Property EndArrowheadStyle As ArrowheadStyle
IShape connector = worksheet.Shapes.AddConnector(ConnectorType.Straight, 10, 10, 200, 100);
ILineFormat line = connector.Line;
line.EndArrowheadStyle = ArrowheadStyle.Triangle;
ArrowheadStyle style = line.EndArrowheadStyle;