I was looking for a way to handle the closing event of the PowerPoint when developing an Add-in.
The only ones that were a bit close was the fact that we can detect the visibility change of the add-in with
Office.addin.onVisibilityModeChanged((args) => {});
Is there anything else that it can be used to detect the closing of the PowerPoint app? I need to send data to the server or ask the user if he wants the changes to be saved.
Thank you