Interface ICellHeaderRange<T>

interface ICellHeaderRange<T> {
    bounds(): RunCoords;
    forEach(visitor, options?): void;
    toString(): string;
}

Type Parameters

  • T = any

Hierarchy (view full)

Methods

  • Advanced and performant way to iteratively values. This allows for visiting only values that are not empty. Important note If no options for filtering are passed this will not return any values

    Parameters

    Returns void

    Remarks

    • Visitors can return a 'break' value to stop the visit.
    • skipEmpty will ensure that only non-empty cells are visited.
    • getContext().getCell() requires additional work over getCoord or reading value.
  • Returns the address as a string

    Returns string