Hi, I am doing a simple document append using Aspose.words v18.8, It seems to be working fine but for some bullets in source document I see that it adds a dashed line and number after appending. This only happens for some bullets and not all. See the resultant Append.docx file and there is a dashed line for bullets. Please let me know how to fix it and if you cna find why this happens only for few bullets.
v18.8 Code for appendingAppended.docx (20.4 KB)
doc1.docx (13.1 KB)
doc2.docx (10.9 KB)
var finalDocument = new Aspose.Words.Document();
finalDocument.FirstSection.Remove();
var doc1 = new Aspose.Words.Document("C:\\Temp\\Aspose\\doc1.docx");
var doc2 = new Aspose.Words.Document("C:\\Temp\\Aspose\\doc2.docx");
finalDocument.AppendDocument(doc1, ImportFormatMode.KeepSourceFormatting);
finalDocument.AppendDocument(doc2, ImportFormatMode.KeepSourceFormatting);
finalDocument.Save("C:\\Temp\\Aspose\\Appended.docx", Aspose.Words.SaveFormat.Docx);
Thanks,
Swamy