CellArrayLocation
type CellArrayLocation = { bottom?: number; dataBottom?: number; dataRight?: number; emptyBottom?: number; emptyRight?: number; left?: number; right?: number; sheetName?: string | null; top?: number; workbookName?: string | null;};Represents the location of a cell array within a sheet and workbook, as well as the dimensions of the array and any empty rows or columns around it.
This is used to provide additional context when reading a cell array from the model, such as when evaluating a formula that returns an array of cells.
emptyRightandemptyBottomindicate how many empty columns or rows are to the right or bottom of the data array.dataRightanddataBottomindicate the number of columns and rows in the data array.top,left,bottom, andrightindicate the overall bounds of the cell array, including any empty rows or columns.sheetNameandworkbookNameprovide context about where the cell array is located within the model.
Properties
Section titled “Properties”| Property | Type |
|---|---|
bottom? | number |
dataBottom? | number |
dataRight? | number |
emptyBottom? | number |
emptyRight? | number |
left? | number |
right? | number |
sheetName? | string | null |
top? | number |
workbookName? | string | null |