DsPdfJS API - v9.1.0
    Preparing search index...

    Type Alias ListBoxFieldProperties

    ListBoxFieldProperties: ChoiceFieldProperties & {
        defaultSelectedIndexes?: number[];
        multiSelect?: boolean;
        selectedIndexes?: number[];
        topIndex?: number;
        type: "listbox";
    }

    Defines properties of a ListBoxField.

    Type Declaration

    • OptionaldefaultSelectedIndexes?: number[]

      The indexes of default selected items.

    • OptionalmultiSelect?: boolean

      Indicating whether more than one of the field's option items may be selected simultaneously.

    • OptionalselectedIndexes?: number[]

      The indexes of selected items.

    • OptionaltopIndex?: number

      The index of top visible item.

    • type: "listbox"