Hi,
I updated to latest Aspose11.6.0 library version release recently in May 2016.
When I referenced to that version dll, I get errors on:
Aspose.Pdf.InteractiveFeatures.Forms.FormType formType = pdfDocument_copy.Form.Type;
foreach (Aspose.Pdf.InteractiveFeatures.Forms.Field formField in pdfDocument_copy.Form.Fields)
{
fieldFullName = formField.FullName;
fieldfacade = form.GetFieldFacade(fieldFullName);
}
if (formField.Count > 0)
{
foreach(Aspose.Pdf.InteractiveFeatures.Annotations.Annotation annot in formField)
{
if (string.IsNullOrEmpty(annot.Contents))
{
}
}
}
saying that:
The type or namespace name ‘InteractiveFeatures’ does not exist in the namespace ‘Aspose.Pdf’ (are you missing an assembly reference?)
Your API reference guide is not updated to provide the correct namespace.
Can you pls specify the correct namespace for iterating through adobe fields on PDF document? What is the right way to get the adobe fields?
Thank you,
Sireesha