Excel.Interfaces.LinkedDataTypeData interface
An interface describing the data returned by calling linkedDataType.toJSON()
.
Properties
data |
The name of the data provider for the linked data type. This may change when information is retrieved from the service. |
last |
The local time-zone date and time since the workbook was opened when the linked data type was last refreshed. Returns |
name | The name of the linked data type. This may change when information is retrieved from the service. |
periodic |
The frequency, in seconds, at which the linked data type is refreshed if |
refresh |
The mechanism by which the data for the linked data type is retrieved. |
service |
The unique ID of the linked data type. |
supported |
Returns an array with all the refresh modes supported by the linked data type. The contents of the array may change when information is retrieved from the service. |
Property Details
dataProvider
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.
The name of the data provider for the linked data type. This may change when information is retrieved from the service.
dataProvider?: string;
Property Value
string
Remarks
lastRefreshed
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.
The local time-zone date and time since the workbook was opened when the linked data type was last refreshed. Returns undefined
if the linked data type has not been refreshed.
lastRefreshed?: Date;
Property Value
Date
Remarks
name
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.
The name of the linked data type. This may change when information is retrieved from the service.
name?: string;
Property Value
string
Remarks
periodicRefreshInterval
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.
The frequency, in seconds, at which the linked data type is refreshed if refreshMode
is set to "Periodic".
periodicRefreshInterval?: number;
Property Value
number
Remarks
refreshMode
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.
The mechanism by which the data for the linked data type is retrieved.
refreshMode?: Excel.LinkedDataTypeRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic";
Property Value
Excel.LinkedDataTypeRefreshMode | "Unknown" | "Manual" | "OnLoad" | "Periodic"
Remarks
serviceId
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.
The unique ID of the linked data type.
serviceId?: number;
Property Value
number
Remarks
supportedRefreshModes
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.
Returns an array with all the refresh modes supported by the linked data type. The contents of the array may change when information is retrieved from the service.
supportedRefreshModes?: Excel.LinkedDataTypeRefreshMode[];
Property Value
Remarks
Office Add-ins