Hi. I am new to Aspose. Is there any function that I can use in Aspose.PDF that can return whether there is a XFA form in my interactive form fields? Thanks in advance
Hi Arashi,
Thanks for your inquiry. You may check form type as following to identify the form, either it is Dynamic XFA or Static XFA or Standard Acroform. Hopefully it will help you to accomplish your task.
// Load form
Document document = new Document("LifecyclePDF.pdf");
// get the form type
Console.WriteLine(document.Form.Type);
Please feel free to contact us for any further assistance.
Best Regards,
Thaks. That really helps!
Hi Arashi,