Hi Eric,
I am trying to merge two documents.
1. First document contains Merge Field to replace
2. Second document contains numbered list
1. test
2. test 2
3. test 3
When i am trying to add the second document’s paragraph with numbered list to first document,
number list
1.
2.
3.
is replacec with
a.
b.
c.
below is the code used
//GET THE PARAGRAPHS FROM SECOnd document
foreach (var para in paragraphs)
{
run = new Run();
var par = (Paragraph)para;
run.Append(new Text(par.InnerText));
//table cell is from first document
tableCell.Append(par.CloneNode(true));
}
Appreciate your reply.