I have several word documents (docx) that I need to concatenate to a single document at runtime. I used the RichEditDocumentServer. However, the resulting document loses formatting. For example, it removes all line spacing.
I have included a some sample code and docx (doc1.docx and doc2.docx) files as well as a sample result file (doc3.docx).
A second issue I am having is that I cannot seem to make the documents be font Calibri size 11. It always comes out New Times Roman 9.
The code I'm using is
editserver1.Options.Behavior.FontSource = RichEditBaseValueSource.Document;
editserver1.Document.DefaultCharacterProperties.FontName = "Calibri";
editserver1.Document.DefaultCharacterProperties.FontSize = 11.0F;
editserver1.Options.Behavior.FontSource = RichEditBaseValueSource.Document;
Thank you,
Matt