ComPDF React Native - v3.0.0
    Preparing search index...

    Interface CPDFArrowAttr

    Attribute configuration for arrow annotations.

    interface CPDFArrowAttr {
        borderColor?: `#${string}`;
        borderAlpha?: ColorAlpha;
        borderWidth?: BorderWidth;
        borderStyle?: CPDFBorderStyleAttr;
        startLineType?: string;
        tailLineType?: string;
        type: "arrow";
    }

    Hierarchy

    • CPDFLineBase
      • CPDFArrowAttr
    Index

    Properties

    borderColor?: `#${string}`

    Line color in HEX format (e.g. #1460F3).

    borderAlpha?: ColorAlpha

    Line opacity. Valid range: 0–255.

    borderWidth?: BorderWidth

    Line thickness. Valid range: 0–10.

    borderStyle?: CPDFBorderStyleAttr

    Line border style configuration (solid or dashed).

    startLineType?: string

    Arrow style at the starting point of the line.

    tailLineType?: string

    Arrow style at the ending point of the line.

    type: "arrow"

    Read-only discriminator for runtime type checks.