SheetXL - v0.3.20
    Preparing search index...

    Interface AutoFillOptions

    Options for ICellRange.autoFill.

    interface AutoFillOptions {
        autoSelect?: boolean | ITypes.SelectOptions;
        contentsOnly?: boolean;
        description?: string;
        filler?: Filler;
        fillerOptions?: IAutoFill.Options;
        previewOnly?: (callback: AutoFillPreviewCallback) => void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    autoSelect?: boolean | ITypes.SelectOptions

    If true or set then this will select the affect item after the transaction is complete.

    If this is set to true then any restore will also select.

    contentsOnly?: boolean

    If true then will only copy values and not formatting.

    false (unless starting within a table)
    
    description?: string

    A human description.

    'determined by the set operation and locale'
    
    filler?: Filler

    Provide custom fillers.

    AutoFill.Types.Series

    fillerOptions?: IAutoFill.Options

    Options to pass to the IAutoFill.Filler.

    These will also be passed if a custom filler is used.

    previewOnly?: (callback: AutoFillPreviewCallback) => void

    If a previewOnly callback is provided then autoFill will not commit any changes but will call previewOnly with a Preview function and then return the original range.

    • Useful for creating tooltips.
    null