I have two pdf.. i this two pdf one pdf has some textbox calculations. if i enter marks one by one it calculates total value automatically..
When i merge those two pdf into one
the calculations for total marks not working
Syncfusion.Pdf.PdfDocument finalDoc = new Syncfusion.Pdf.PdfDocument();
string[] source = { "E:/Content/Documents/24418/Doc.pdf","E:/Content/Documents/24418/Doc5.pdf" };
PdfDocument.Merge(finalDoc, source);
finalDoc.Save("E:/Content/Documents/24418/Doc6.pdf");
finalDoc.Close(true);