Good day, I am trying to create an outlook addin, that retrieves fields entered in the new appointment tab when creating an outlook meeting, primarily what location they have selected.
When creating a new meeting you are able to select the room (resource) and it displays in the location field.
I need to be able to pull in that location into my C# outlook addin (VSTO) and display it as a string. I am not able to find that reference anywhere.
Everywhere i have looked they have explained how to create a new appointment from C# but not the other way around:
I am not entirely sure this is possible, But i would assume it to look something like: string location = Outlook.AppointmentItem.Resources
The closest i have found would be something like these: https://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook._appointmentitem.resources%28v=office.14%29.aspx And https://msdn.microsoft.com/en-us/library/microsoft.office.interop.outlook._appointmentitem%28v=office.14%29.aspx
But they dont seem to work. Any and all help would be appreciated.