SheetXL - v0.3.20
    Preparing search index...

    Type Alias RangeAddress

    RangeAddress:
        | ICellRange
        | string
        | Partial<IRange.FixableCoords>
        | ICell.Address

    The different ways to identify a range within a sheet, supporting both relative and absolute (fixed) addressing.

    Accepts:

    • ICellRange
    • A parsable string representing a range address (e.g., A1 or $A$1 notation).
    • A partial IRange.Coords object (specifying at least some of the range boundaries), optionally with a $fixed flag to indicate absolute addressing.
    • ICellRange.Address (representing a single cell within the sheet), optionally with a $fixed flag to indicate absolute addressing.
    const address1: Address = "A1:B2"; // Relative addressing (A1 notation)
    const address2: Address = "$A$1:$B$2"; // Absolute addressing (A1 notation)