If I select an Outlook message from the Inbox and copy it to the clipboard, I can paste it into the * .msg file on the desktop.
Now I want to implement the same function for my application.
The Clipboard object contains the following elements:
RenPrivateSourceFolder RenPrivateMessages RenPrivateItem FileGroupDescriptor FileGroupDescriptorW FileDrop FileNameW FileName FileContents Object Descriptor System.String UnicodeText Text
FileGroupDescriptor contains a MemoryStream with the file name (Subject.msg), but I do not know how to create a copy from an Outlook message from Clipboard data, since none of the elements seem to contain the message itself.
Any suggestions?
source share