Excel.EntityCellValue interface
Represents a set of properties without a schema or defined structure.
Remarks
Properties
basic |
Represents the value that would be returned by |
basic |
Represents the value that would be returned by |
layouts | Represents layout information for views of this entity. |
properties | Represents the properties of this entity and their metadata. |
provider | Represents information that describes the service that provided the data in this |
referenced |
Represents the cell values which are referenced within |
text | Represents the text shown when a cell with this value is rendered. |
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
layouts
Represents layout information for views of this entity.
layouts?: EntityViewLayouts;
Property Value
Remarks
properties
Represents the properties of this entity and their metadata.
properties?: {
[key: string]: EntityPropertyType;
};
Property Value
{ [key: string]: Excel.EntityPropertyType; }
Remarks
provider
Represents information that describes the service that provided the data in this EntityCellValue
. This information can be used for branding in entity cards.
provider?: CellValueProviderAttributes;
Property Value
Remarks
referencedValues
Represents the cell values which are referenced within EntityCellValue.properties
.
referencedValues?: ReferencedValue[];
Property Value
Remarks
text
Represents the text shown when a cell with this value is rendered.
text?: string;
Property Value
string
Remarks
type
Represents the type of this cell value.
type: CellValueType.entity | ReferenceValueType.entity | "Entity";
Property Value
Remarks
Office Add-ins