Is it possible to programmatically access the selected appointment (event) in outlook using Office Add In
问题 How to get the selected appointment data from outlook calendar Add Ins. I have added the Add Ins in Outlook calendar. I want to get the selected appointment ( event ) data. Because i need to display the selected event in Outlook Add Ins. Is this possible ? ( using javascript ) 回答1: You can use Office.js APIs to get the details of current item or mailbox. For selected item's data you can use Office.context.mailbox.item APIs. Please check the API reference doc for complete API set. 来源: https:/