Hi! I am converting .RTF files to both MS Word .doc and .PDF files. I notice that a page background color is preserved when converted as .doc, but as .PDF the background color is removed. I'm basically using code like:
Document doc = new Document(inPath);
(... create a DataRow, fill with some data...)
doc.MailMerge.Execute(dr);
doc.Save("Test.doc", SaveFormat.Pdf, SaveType.OpenInWord, Response);
Is there a way to convert such that page background color is carried over? Any help would be appreciated, thanks!