propagate automatic formatting to other Outlook folder

  • Thread starter Thread starter paresh
  • Start date Start date
P

paresh

Hi,

Is there any way ( in Outlook 2007 ) to propagate the Automatic Formatting
rules to another folder?

If I want to write the Add-in for it then how to fetch the Automatc
Formatting information for selected folder and how to apply it to another
email folder?

Any related information would also be appreciated.

Thanks in advance.
Paresh
 
AutoFormatRules are available only for certain views (CalendarView, CardView
and TableView). Assuming your view is one of those you can pick up the
AutoFormatRules for the source view and add them to the target view. If it's
a different type of view then you can't do it.

You would get the View.ViewType and check if it's one the correct types.
Then if it is you can cast the View as a TableView (for example).
 
Back
Top