AreaArray
AreaArray<
T> = (T|null)[][] &AreaArrayAttributes<T>
Array of arrays of Cell objects or their values, with some bounds attributes, sheet name and workbook name.
Intended to represent the contents of a specified area of a sheet in a workbook.
- The length is equal to
bottom - top + 1. - The elements are arrays of length
right - left + 1, each representing one row of the area that this represents. top,left,bottom,right(non-negative integers) are the inclusive zero-based bounds of the area that this represents.sheetName- name identifying a sheet in a workbook (possibly differing in case from the actual sheet name)workbookName- name identifying a workbook (possibly differing in case from the actual workbook name)
Type Parameters
Section titled “Type Parameters”T extends Cell | CellValue | MaybeBoxed<CellValue> | ArrayValue | MaybeBoxed<ArrayValue>