Interface FindWorkbookCellOptions

interface FindWorkbookCellOptions {
    bounds?: CellRangeCoordsAddress;
    disableWrap?: boolean;
    fields?: FindCellField[];
    from?: CellCoordsAddress;
    includeFrom?: boolean;
    isMatchCase?: boolean;
    isMatchEntireCell?: boolean;
    isReverse?: boolean;
    isRowScan?: boolean;
    isUseRegex?: boolean;
    onFound?: ((pair) => boolean | void);
    scope?: WorkbookFindCellScope;
}

Hierarchy

Properties

A bounds to limit the find by.

Default Value

'This will use the current range bounds if there is a single bounds. Otherwise it will use the entire sheet'
disableWrap?: boolean

Determine if will wrap back to beginning

Default Value

false
fields?: FindCellField[]

The cell to start from @defaultValue. The next cell after the current selection

includeFrom?: boolean

Checks the from cell for a match

Default Value

false
isMatchCase?: boolean

If the search is case sensitive

Default Value

false
isMatchEntireCell?: boolean
isReverse?: boolean

Search in reverse order

Default Value

false
isRowScan?: boolean
isUseRegex?: boolean
onFound?: ((pair) => boolean | void)

Called on a found results.

Type declaration

Remarks

This will break unless an explicit false is returned.

Default Value

WorkbookFindCellScope.Sheet