post-thumb

Office Add-ins developer platform community call – February 8th, 2023

Office Add-ins developer platform community call - February 8, 2023

This month’s agenda and presenters

The call was hosted by Preethika Kiruveedula, Product Manager, Microsoft.

  • Demo: How to create a spreadsheet from your website . David Chesnut, Senior Technical Writer, Microsoft.
  • Update on upcoming Preview Word APIs. Yun Wang, Principal Product Manager, Microsoft.
  • Add-in Support for new Outlook Nikita Mittal, Senior Product Manager, Microsoft and Juan Balmori, Principal Product Manager, Microsoft.
  • Q&A. See question and answers at end of call and in chat throughout call. Preethika Kiruveedula, Product Manager, Microsoft.

View video segments

  • Introduction 00:00
  • Demo - Create a spreadsheet from your website 00:53
  • Upcoming Preview Word APIs coming in March 2023 14:53
  • Add-in Support for new Outlook 27:33
  • Q&A 40:38
  • Resources 41:45
  • Closing 42:35

Topic summaries

  • Create a spreadsheet from your website. Walk through the tutorial document, solution architecture, and code sample. Automatically generate a new spreadsheet with the requested data (in table on a web page), upload it to the initiator’s OneDrive, and open it in Excel in a new browser tab. The action is initiated with a single click. Additionally, the pattern embeds your own Office Add-in inside the spreadsheet.
  • Upcoming Preview Word APIs - March 2023. Quick briefing on Word APIs that will Preview in March. New/updated APIs include new insertFileFromBase64 API (insert content from source document into destination document), updated Style API (retrieve, show and insert other document’s styles in current document), Save / Close API (save/close new/existing documents), Fields API (more Field properties for selected types), and Content Control Events API (adding enter and exit events). Target mid-year GA.
  • Add-in Support for new Outlook. Overview on new Outlook that’s available for Windows today and all platforms in time. What does this mean for developers? New Outlook is coming, web add-ins are going to be the main extensibility option for new Outlook, and the Microsoft team is super committed to add the richness needed to enable and support moving your existing COM add-in investments to web add-ins.

Call to action

Q&A (Question & Answers)

Are there any plans to allow for add-ins to have limited functionality offline modes?

For a sample that shows some techniques for working offline, see Techniques to access data from an Office Add-in when offline in our samples GitHub repo. However, it would be good to know what additional features you may need for your scenario. Please let us know more at https://aka.ms/m365dev-suggestions.

Where can we find a roadmap regarding the future of Office Add-Ins using Office.JS?

We are improving our processes, including adding API releases to the Microsoft 365 Roadmap (MSRRP). Periodically check this page for feature updates.

Can an API function know what user uses the add-In to be able to retrieve the right information?

Yes, the sample doesn’t use auth, but you should set up auth on the Azure function so that it would have the user name. The Azure Functions documentation should have info on how to set this up. You can configure the parameters you pass to the function to pass any values you need.

Any way to name the new workbook? (or Save As equivalent)?

Yes, the uploadFile function in authPopup.js takes a name parameter. You can use any name you prefer.

I am trying to work with shapes on an PowerPoint Web Add-in, on Visual Studio, using the PowerPoint JavaScript API, but I am not able to use the features shown on the Office Add-ins community call from August 2021. I get it to work on Script Lab, but not on Visual Studio (e.g. shape.textFrame.textRange.font.color = “purple”;). How can I get help?

Make sure that the template is referencing the CDN for Office.js. If you need further guidance, open an issue on GitHub.

Where can I get help/support to work out the Graph authentication for add-ins? I have not had any success to make the add-in and Graph authentication setup.

Reach out to the identity team for further help.

Will the other types than richText or ContentControls be supported in the next preview as well?

PlainText CC will be supported in the preview as well.

Are you going to retire the desktop Outlook application? Will a new Outlook be included to the Office package instead?

This hasn’t been determined yet.

When will the support of shared mailboxes be made public? It’s been in preview for months now.

Support for shared mailbox scenarios will be made available mid-year.

COM/VSTO add-ins does that also include VBA?

Yes. COM and VSTO add-ins that include VBA will not be supported in the new Outlook on Windows.

What is the likelihood/timing for a “New Excel” like the new Outlook? (Where COM/VSTO is not an option.)

There are currently no plans to implement this for other Office applications other than Outlook.

We are loving last month’s announcement of the new Smart Alerts for Outlook! Especially that they are allowed into AppSource (since on-send add-ins are not allowed). One of our financial clients would like an HTML form to be displayed before composing a new email, where the user must select from a pre-defined list of acceptable banks that they are allowed to email; the new Smart Alerts can help us to accomplish this, but how can we present an HTML input form with the list of banks to the user? The Outlook compose event does not appear to allow us to present a form when first composing…

You can use event-based activation to evaluate the preconditions of a task pane launch, add a notification message to determine if those checks pass, and instruct the user to click the task pane ribbon button. Auto-launching the task pane still isn’t supported, but it can be pinned.

How can I contribute the feature of encryption/decryption of messages?

We would love to hear about your scenario for using encryption in the new Outlook on Windows. Please share your scenario for this feature by completing the form at DevNewOutlook.

Was the DevNewOutlook just for VSO to new WebBased? Yes, DevNewOutlook is a form where you can share your current VSTO and COM add-in solutions, so that we can further understand your scenario.

PowerPoint.setSelectedSlides(slideIds) is throwing error as general exceptions.

We’re sorry to hear you’re running into errors. Please open an issue on GitHub, so that we can troubleshoot this issue with you.

General Resources

Stay connected