I would like to set the Body
of an AppointmentItem
to a string of RTF that contains an embedded image. Setting Microsoft.Office.Interop.Outl
The only way I know is to access the AppointmentItem's GetInspector property, and use it to fetch the underlying WordEditor used to parse the RTF format, something like:
var doc = appointment.GetInspector.WordEditor as Microsoft.Office.Interop.Word.Document;
and then format the document using doc.Content according to Word Object Model.