hhravn
hhravn

Reputation: 1741

Extending the Oulook 2010 attachment context menu

I am extending the contextmenu shown for attachments in Outlook 2010 in xml. So far i've got a button and a handler for the onAction event. Could anybody help me on how to get the currrently selected attachments from here?

Upvotes: 3

Views: 1428

Answers (1)

hhravn
hhravn

Reputation: 1741

Ok, got it. http://msdn.microsoft.com/en-us/library/ee692172.aspx#OfficeOLExtendingUI_AttachmentContextMenu

says

IRibbonControl.Context

AttachmentSelection object

so =>

var attachmentSelection = (control.Context as AttachmentSelection).OfType<Attachment>();

Upvotes: 3

Related Questions