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

    Interface CPDFComboBoxAttr

    Attributes for a combo box (drop-down) widget used in PDF forms.

    Shares the same appearance properties as a list box but represents a single-value selection control with a collapsed/expanded state.

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

    Properties

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

    Background fill color of the combo box.

    borderColor?: `#${string}`

    Border color of the combo box.

    borderWidth?: BorderWidth

    Border width of the combo box.

    fontColor?: `#${string}`

    Font color for the displayed value.

    fontSize?: FontSize

    Font size for the displayed value.

    familyName?: string

    Optional font family name for the displayed value.

    styleName?: string

    Optional text style name for the displayed value.