Excel.ExternalCodeServiceObjectCellValue interface
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 value of a cell containing an External Code Service Object, such as Python code formula.
Remarks
[ API set: ExcelApi BETA (PREVIEW ONLY) ]
Properties
basic |
Represents the value that would be returned by |
basic |
Represents the value that would be returned by |
language | Represents the runtime language of this external code service. |
preview | Represents the preview value shown in the cell. |
Python_str | Represents the output of str() function when used on this object. |
Python_type | Represents the full type name of this object. |
Python_type |
Represents the short type name of this object. |
type | Represents the type of this cell value. |
Property Details
basicType
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 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
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 value that would be returned by Range.values
for a cell with this value.
basicValue?: boolean | number | string;
Property Value
boolean | number | string
Remarks
language
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 runtime language of this external code service.
language: "Python";
Property Value
"Python"
Remarks
preview
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 preview value shown in the cell.
preview?: CellValue;
Property Value
Remarks
Python_str
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 output of str() function when used on this object.
Python_str: string;
Property Value
string
Remarks
Python_type
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 full type name of this object.
Python_type: string;
Property Value
string
Remarks
Python_typeName
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 short type name of this object.
Python_typeName: string;
Property Value
string
Remarks
type
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 type of this cell value.
type: CellValueType.externalCodeServiceObject | "ExternalCodeServiceObject";
Property Value
externalCodeServiceObject | "ExternalCodeServiceObject"
Remarks
Office Add-ins