Interface RangeAutoFillOptions

Additional options for AutoFill.

interface RangeAutoFillOptions {
    adjustSelection?: boolean;
    copyCells?: boolean;
    description?: string;
    previewOnly?: boolean;
    stepValue?: number;
    stopValue?: number;
    trendTypes?: readonly TrendType[];
}

Hierarchy (view full)

Properties

adjustSelection?: boolean

Default Value

true
copyCells?: boolean

If set to true this will use the cell values and just iterator over the cells.

description?: string

A description that is used for versioning and tracking changes.

Default Value

'determined by the consumer'
previewOnly?: boolean

If this is set to true then values are not committed but autoFill function will still return a preview function

Default Value

false
stepValue?: number

TODO - implement

stopValue?: number

TODO - implement

trendTypes?: readonly TrendType[]

Provide the options to override trend types

Default Value

DEFAULT_TREND_TYPES