iam importing html content in to current word document and merging current document to destination document…iam not getting which font it is taking pls let me know how to check?
oDocBuilder = new DocumentBuilder(oCurrentDoc);
oDocBuilder.InsertHtml(sbHfnContent.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);
}
}