Hello,
Hi
<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
Thanks for your request. I managed to reproduce the problem on my side. Your request has been linked to the appropriate issue. You will be notified as soon as it is resolved.
Also, to merge documents you can use Document.AppendDocument method. This can simplify your code:
// Get file names of documents.
string[] fileNames = Directory.GetFiles(@"Test001\");
// Append all docuemtn to the first one.
Document dstDoc = new Document(fileNames[0]);
for (int i = 1; i < fileNames.Length; i++)
{
Document srsDoc = new Document(fileNames[1]);
srsDoc.FirstSection.PageSetup.SectionStart = SectionStart.NewPage;
dstDoc.AppendDocument(srsDoc, ImportFormatMode.KeepSourceFormatting);
}
// Save output document.
dstDoc.Save(@"Test001\out.doc");
dstDoc.Save(@"Test001\out.docx");
Best regards.
Thanks Alexey.
Hi,
Your destination document (the one with the image) has a document default line spacing that is big. On the other hand there is no line spacing specified explicitly in the source document with tables. When AW copies content with no line spacing formatting into a document with huge line spacing default (for the document), the content is shown like it has huge line spacing. This changes the layout of your tables.
There is currently no workaround for this in Aspose.Words. You need to edit the destination document (styles.xml) to modify the default line spacing or you can try appending your image to the document that contains the tables.
The issues you have found earlier (filed as 13239) have been fixed in this update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
(40)
The issues you have found earlier (filed as WORDSNET-2098) have been fixed in this .NET update and this Java update.
This message was posted using Notification2Forum from Downloads module by aspose.notifier.
The issues you have found earlier (filed as ) have been fixed in this update. This message was posted using BugNotificationTool from Downloads module by MuzammilKhan