-
Notifications
You must be signed in to change notification settings - Fork 120
Streaming function cell address #6499
Description
Hi,
we would like to retrieve the address of a streaming custom function and we re trying this kind of parameters in the function's options property :
a. "requiresStreamAddress": true
b. "stream": true.
Seen also in the custom-functions-metadata package : https://github.com/OfficeDev/Office-Addin-Scripts/blob/master/packages/custom-functions-metadata/src/parseTree.ts#L25
like in :
{ "description": "Streaming function", "id": "CONTOSO.Address", "name": "Test", "parameters": [], "options": { "stream": true, "requiresStreamAddress": true }, "result": { "dimensionality": "matrix" } },
and retrieve the address through the invocation object :
function getStreamAddress(interval: number, invocation: CustomFunctions.StreamingInvocation) { let address = invocation.address;
is it something supported in Excel at the moment please ?