Hello,
I have a Merge Code in a Template, and I am inserting content using ‘InsertHtml’ method.
But, the issue is - the spacing after defined in MergeCoede in Word, is not reflected when I use Merge Contents using Aspose Library.
Below are the codes snippet-
string content = “Sample Contents”;
Document newDoc = new Document();
DocumentBuilder dB = new DocumentBuilder(newDoc);
dB.InsertHtml(content);
MemoryStream mSteam = new MemoryStream();
newDoc.Save(mSteam, SaveFormat.Docx);
Regards,
Sam