(callback: (cell: Cell) => void)
| 1645 | getCellAt(sheetName: string, rowNumber: number, colNumber: number): Cell; |
| 1646 | removeCellEx(address: string | Location): void; |
| 1647 | forEach(callback: (cell: Cell) => void): void; |
| 1648 | map<T>(callback: (cell: Cell) => T): T[]; |
| 1649 | findSheet(address: string | Location, create: boolean): Cell[] | undefined; |
| 1650 | findSheetRow(sheet: Cell[][], address: string | Location, create: boolean): Row | undefined; |
no outgoing calls