Get Outlook 2010 rule description

I am developing an add-in for Outlook 2010. I need to get all the rules and descriptions for them. I can access the rules, but I don’t understand how to get the descriptions, as in the picture. enter image description here

+6
source share
1 answer

The rule description is not provided directly in the VSTO API - but you can interpret it yourself by listing and translating the Conditions ( Rule.Conditions / Rule.Exceptions ) and Rule Actions ( Rule.Actions ) rules .

+3
source

Source: https://habr.com/ru/post/920232/


All Articles