[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ILineFormat.BeginArrowheadWidth

BeginArrowheadWidth Property

BeginArrowheadWidth

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

Use this method to retrieve the current ArrowheadWidth setting for the line's beginning arrowhead.

Declaration
ArrowheadWidth BeginArrowheadWidth { get; set; }
Property BeginArrowheadWidth As 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;
ArrowheadWidth width = line.BeginArrowheadWidth;