Saving PDFs after form filling

Q: Hi! I’ve been reading the API documentation for the PDFNet
library, and I cannot find a method to save a form back to PDF. Does
your library support this feature? What I’m looking for a PDF control
(pdftron.PDF.PDFViewCtrl) that we can embed in our .NET application,
which allows the user to edit form data (a la Acrobat Reader), but
allows us to implement our own “save” button, because we want to
dictate the name and location of the resulting file. Thanks.
------------------------
A: You can use pdfview.GetDoc().Save(...) to save a modified PDF
files. In case you are only interested in forms data, you can extract
FDF from PDF and save it using fdfdoc.Save(). For the latter case
please see FDF sample project (http://www.pdftron.com/pdfnet/
samplecode.html#FDF). You can also access and save forms data directly
(as shown in InteractiveForms sample http://www.pdftron.com/pdfnet/samplecode.html#InteractiveForms)

Please let me know if this helps and if you have any other questions.