SheetXL - v0.3.20
    Preparing search index...

    Interface SelectOptions

    Extends ITypes.SelectOptions to include options for IMovable.

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

    Hierarchy (View Summary)

    Index

    Properties

    addToSelection?: boolean

    Flag to indicate the the movable should be added to the selection or should replace the existing selection.

    Setting this to true is the equivalent of press the Ctrl in the UI.

    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