Excel.ArrayCellValue interface
Represents a 2D array of cell values.
Remarks
Properties
basic |
Represents the value that would be returned by |
basic |
Represents the value that would be returned by |
elements | Represents the elements of the array. May not directly contain an |
referenced |
Represents the cell values which are referenced within |
type | Represents the type of this cell value. |
Property Details
basicType
Represents the value that would be returned by Range.valueTypes
for a cell with this value.
basicType?: RangeValueType.error | "Error";
Property Value
error | "Error"
Remarks
basicValue
Represents the value that would be returned by Range.values
for a cell with this value. When accessed through a valuesAsJson
property, this string value aligns with the en-US locale. When accessed through a valuesAsJsonLocal
property, this string value aligns with the user's display locale.
basicValue?: "#VALUE!" | string;
Property Value
"#VALUE!" | string
Remarks
elements
Represents the elements of the array. May not directly contain an ArrayCellValue
.
elements: CellValue[][];
Property Value
Excel.CellValue[][]
Remarks
referencedValues
Represents the cell values which are referenced within ArrayCellValue.elements
.
referencedValues?: ReferencedValue[];
Property Value
Remarks
type
Represents the type of this cell value.
type: CellValueType.array | ReferenceValueType.array | "Array";
Property Value
Remarks
Office Add-ins