I am currently working on a feature for my system that generates PDF documents based on a template. My goal is to have a base PDF file with standard text containing placeholder tags, such as #Name#, #Address#, etc.
When a user downloads the file, the system should automatically replace these tags with the user's specific data.
However, while going through the documentation, I haven't found a straightforward "Find and Replace" method. Most of the examples I’ve seen involve identifying the exact coordinates of the original text and drawing new text over it. This approach isn't ideal for my use case because the replacement strings will have different lengths for each user, which would likely break the layout or cause overlapping text.
Is there a built-in way in Syncfusion to perform a true text replacement that adjusts the flow, or perhaps a better workflow using PDF templates for this scenario?