Scripts
    Preparing search index...

    Interface IOptionValueSetter

    interface IOptionValueSetter {
        setValueByOptionValue(optionValue: string): void;
        setValueByOptionValue(optionValues: string[]): void;
        setValueByOrder(order: number): void;
        setValueByOrder(orderArray: number[]): void;
    }

    Implemented by

    Index

    Methods

    • Selects option in Select by the option value.

      Parameters

      • optionValue: string

        Value of selected option.

      Returns void

    • Selects multiple options in Select by their option values.

      Parameters

      • optionValues: string[]

        Array of values of options to be selected.

      Returns void

    • Selects option in Select by order.

      Parameters

      • order: number

        Order number of option to be selected.

      Returns void

    • Selects multiple options in select by their order.

      Parameters

      • orderArray: number[]

        Array of order numbers of options to be selected.

      Returns void