Arrow style

interface AcGiArrowStyle {
    appended?: boolean;
    inversed?: boolean;
    scale?: number;
    type: AcGiArrowType;
    visible: boolean;
}

Properties

appended?: boolean

The flag to determinate how to attach arrow to endpoint of the line.

  • true: append arrow to endpoint of the line
  • false: overlap arrow with endpoint of the line
inversed?: boolean

The flag to determinate whether the arrow direction is inversed. Default value is false.

  • true: arrow direction is from the external part of the line to the start or end point of the line like '>------<'.
  • fase: arrow direction is from the internal part of the line to the start or end point of the line like '<------>'.
scale?: number

Scale factor. Default value is 1.

Arrow type.

visible: boolean

The flag whether this arrow is visible.