how to insert new line between content in word document?
if (sbContent.Length > 0)
{
oDocBuilder = new DocumentBuilder(oCurrentDoc);
oDocBuilder.InsertHtml("" + sbnContent.ToString() + " ");
}
if (oCurrentDoc.ChildNodes.Count > 0)
{
oCurrentDoc.FirstSection.PageSetup.SectionStart = SectionStart.Continuous;
foreach (Section srcSection in oCurrentDoc)
{
Section newSection = (Section)oDestDoc.ImportNode(srcSection, true, ImportFormatMode.KeepSourceFormatting);
oDestDoc.Sections.Add(newSection);
}
}