SheetXL - v0.3.20
    Preparing search index...

    Type Alias RangeAddress

    RangeAddress: ICellRange | string | Partial<IRange.FixableCoords> | CellAddress

    Represents the different ways to identify ranges within a workbook, including the sheet context.

    Accepts:

    • ICellRange
    • A parsable string representing a range address, optionally including the sheet name (e.g., "Sheet1!A1:B2").
    • A partial IRange.FixableCoords object (specifying at least some of the range boundaries), which may include the sheetName property to identify the sheet.
    • IWorkbook.CellAddress (representing a single cell within the workbook), which may includes the sheetName property to identify the sheet.
    const address1: Address = "Sheet1!A1:B2"; // A1 notation with sheet name
    

    This leverages ICellRange.Address and adds the sheet name.