Excel.StringCellValue interface
Represents the value of a cell containing a string.
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 string value. |
properties | Represents additional properties of this string value. |
provider | Represents information that describes the service that provided the data in this |
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.string | "String";
Property Value
string | "String"
Remarks
basicValue
Represents the value that would be returned by Range.values
for a cell with this value.
basicValue: string;
Property Value
string
Remarks
layouts
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Represents layout information for views of this string value.
layouts?: BasicViewLayouts;
Property Value
Remarks
properties
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Represents additional properties of this string value.
properties?: {
[key: string]: EntityPropertyType;
};
Property Value
{ [key: string]: Excel.EntityPropertyType; }
Remarks
provider
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Represents information that describes the service that provided the data in this StringCellValue
. This information can be used for branding in card view.
provider?: CellValueProviderAttributes;
Property Value
Remarks
referencedValues
Note
This API is provided as a preview for developers and may change based on feedback that we receive. Do not use this API in a production environment.
Represents the cell values which are referenced within StringCellValue.properties
.
referencedValues?: ReferencedValue[];
Property Value
Remarks
type
Represents the type of this cell value.
type: CellValueType.string | ReferenceValueType.string | "String";