I’ve created addin that checks recipients on-send. I wanna inform the person with the taskpanel. I’m trying to do “Show task pane” from the js to open that panel. Is there a way to do that? UI Dialog is a problem cause there old office’s versions in my company As the Emoji addin Answer It is not possible to open
Tag: office-js
How to get the Pivot table name and pivot field name of the selected or active cell using Excel JavaScript API?
I am new to Excel JavaScript API. My question is How to get the Pivot table name and pivot field name of the selected or active cell using Excel JavaScript API? how to get the same result with excel JS as we are getting from the below VBA code? Sub GetPivotName() End Sub Answer Have you tried Range.getPivotTables API to
Is it possible to get/select Alt Text in powerpoint using the JS API?
As far as I can see in the documentation, there is a method exposed to set selected data, however the example in the docs and elsewhere seem to imply that it only receives a base64 image string, which does not contain any info about the alt text. Is there an API exposed to do CRUD operations over the Alt Text
Store word context objects in variable
Exploring word add-ins world. Want to create a list of paragraphs and navigate to each by click on it(some kind of table of content) Like that: I have created code(on reactjs, but it does not matter which framework to use) When I click on any button the callback is invoked, no errors in console, but the navigation does not happen.
Excel JavaScript API fails to read range from sheet Edge vs IE
We have an Excel add-in which writes a range to an Excel sheet and lets the user modify it. Once they are done they will press a button on which we will read the range from the sheet and will try to parse it. Excel has recently updated its integration browser: https://learn.microsoft.com/en-us/office/dev/add-ins/concepts/browsers-used-by-office-web-add-ins Windows 10 ver. < 1903 / Office 365
Excel Add-in: How to create a range?
I am writing an Excel add-in in JavaScript. What I need to do is find the currently selected cell, then create a range object that is 4 columns wide and X rows high, with the selected cell at the top left of the selection. I know how to find the currently selected cell, but I don’t know how to either