Rank: Newbie Groups: Member
Joined: 8/6/2021 Posts: 5
|
This example from the EO.PDF help shows the use of a PDF where the fields are filled in beforehand and then the document is saved:
Sample: PdfDocument doc = new PdfDocument("c:\\registration.pdf");
//Get the First_Name field PdfField field = doc.Fields["First_Name"];
//Set the field value field.Value = "John";
//Save it back doc.Save("c:\\registration.pdf");
My Question!! How can I first display the document in the viewer and read out the input of the fields ????
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,217
|
Hi,
You won't be able to read or set the value when the PdfDocument is in the viewer. This is not yet supported. Hopefully we will be able to support it in the future.
Thanks!
|