SheetXL - v0.3.20
    Preparing search index...

    Interface SelectOptions

    Options for controlling selection behavior, including scrolling and focus.

    interface SelectOptions {
        autoFocus?: boolean;
        scrollIntoView?: boolean | ScrollIntoViewOptions;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoFocus?: boolean

    If true, the selected element will automatically receive focus after being selected.

    • If false (or omitted), the element will not automatically receive focus.
    false
    
    scrollIntoView?: boolean | ScrollIntoViewOptions

    If true or if a valid ScrollIntoViewOptions object is provided, the selected element will be scrolled into view.

    • If a ScrollIntoViewOptions object is provided, it will control the exact scrolling behavior.
    • If false (or omitted), the selected element will not be scrolled into view.
    false