Hey, I am evaluating Syncfusion for one of my large enterprise clients. The need is to fill PDF template (form) at run time. I am able to set values for the textboxes successfully however struggling to put the values for the text boxes that have Auto Font = True. The data is being truncated there in final PDF. However; the iTextSharp is giving me the output as expected for this functionality. Could you please help how can I work with text boxes having auto font = true.
I tried by setting Flaterren = true, data is being truncated in the textbox even though property Font Size = auto is set in the template. This problem occurs with "PdfLoadedDocument" also.
PdfDocument doc1 = new PdfDocument();
doc1.ImportPageRange(pdfReader, 0, pdfReader.Pages.Count - 1);
doc1.Form.Flatten = true;
doc1.Save(msFinalPDF);