Friday 15 April 2011

c# - Set default font in Outlook with an addin -



c# - Set default font in Outlook with an addin -

i writing outlook addin automatically sets default signature:

word.application oword = new word.application(); word.emailoptions ooptions; ooptions = oword.application.emailoptions; ooptions.emailsignature.newmessagesignature = "standardsignatur"; ooptions.emailsignature.replymessagesignature = "standardsignatur";

i able set default font normal text msg:

ooptions.plaintextstyle.font.name="arial"; ooptions.plaintextstyle.font.size=40;

but how can alter font of new html message in addin?

outlook not expose alternative programmatic access.

c# outlook ms-word outlook-addin

No comments:

Post a Comment