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

    Interface CPDFInkAttr

    Attribute configuration for ink annotations.

    Defines stroke color, opacity, and brush thickness.

    interface CPDFInkAttr {
        type: "ink";
        color?: `#${string}`;
        alpha?: ColorAlpha;
        borderWidth?: BorderWidth;
    }
    Index

    Properties

    type: "ink"

    Read-only discriminator for runtime type checks.

    color?: `#${string}`

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

    alpha?: ColorAlpha

    Stroke opacity. Valid range: 0–255.

    borderWidth?: BorderWidth

    Brush thickness. Valid range: 1–10.