Interface to define arrow style of arrows at the start point and end point of one line

interface AcGiLineArrowStyle {
    firstArrow?: AcGiArrowStyle;
    secondArrow?: AcGiArrowStyle;
}

Properties

firstArrow?: AcGiArrowStyle

Arrow style at the first point of the line. If it is undefined, no arrow style applied for this point.

secondArrow?: AcGiArrowStyle

Arrow style at the second point of the line. If it is undefined, no arrow style applied for this point.