Hi, I'm searching for a way to add a Free Text Annotation with a specific name, like this Acrobat JavaScript:
for (var p=0; p<this.numPages; p++)
{
var annotRect = [82,10,250,17];
var a = this.addAnnot({page: p, type: "FreeText", rect: annotRect, width: 0, name: "UniqueRef"});
}
But, I did not found how to execute this with Syncfusion.Pdf; the PdfFreeTextAnnotation class does not have a "Name" property.
Thank you