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

basicType

Represents the value that would be returned by Range.valueTypes for a cell with this value.

basicValue

Represents the value that would be returned by Range.values for a cell with this value.

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_typeName

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]

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

[ API set: ExcelApi BETA (PREVIEW ONLY) ]