[]
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.
ArrowheadWidth EndArrowheadWidth { get; set; }
Property EndArrowheadWidth As ArrowheadWidth
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;