Excel.ReferenceCellValue interface
Represents a reference into referencedValues. One scenario for using this reference is to avoid duplicating cell value objects (such as an EntityCellValue). Define a cell value object once in referencedValues, and then refer to that cell value from many places by using a ReferenceCellValue where the duplicated value would have appeared.
Remarks
Properties
| basic |
Represents the value that would be returned by |
| basic |
Represents the value that would be returned by |
| reference | Represents the index into the |
| 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 | "Boolean" | "Double" | "Error" | "Empty" | "String";
Property Value
Excel.RangeValueType | "Boolean" | "Double" | "Error" | "Empty" | "String"
Remarks
basicValue
Represents the value that would be returned by Range.values for a cell with this value.
basicValue?: boolean | number | string;
Property Value
boolean | number | string
Remarks
reference
Represents the index into the referencedValues properties of cell values such as EntityCellValue and ArrayCellValue.
reference: number;
Property Value
number
Remarks
type
Represents the type of this cell value.
type: CellValueType.reference | "Reference";
Property Value
reference | "Reference"