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

    Interface CPDFListBoxAttr

    Attributes for a list box widget used in PDF forms.

    Controls the visual appearance of the selection list and its text.

    interface CPDFListBoxAttr {
        type: "listBox";
        fillColor?: `#${string}`;
        borderColor?: `#${string}`;
        borderWidth?: BorderWidth;
        fontColor?: `#${string}`;
        fontSize?: FontSize;
        familyName?: string;
        styleName?: string;
    }
    Index

    Properties

    type: "listBox"
    fillColor?: `#${string}`

    Background fill color of the list box.

    borderColor?: `#${string}`

    Border color of the list box.

    borderWidth?: BorderWidth

    Border width of the list box.

    fontColor?: `#${string}`

    Font color for list items.

    fontSize?: FontSize

    Font size for list items.

    familyName?: string

    Optional font family name for list items.

    styleName?: string

    Optional text style name for list items.