Hi,
When we try to convert an eml to pdf we have a requirement to apply a particular font style to body of message and not for the header of the message.
We tried with the following code snippet but this applies the font style to the entire message.
foreach (Aspose.Words.Style style in document.Styles)
{
if (style.Font != null)
{
style.Font.ClearFormatting();
style.Font.Name = “Verdana”;
}
}
Is there any possibility to apply font style only to message body? Could you please suggest us on this?
Thanks,
Kavitha
(US 1466689)