The following example shows how to parse a form of the document:
// Create an instance of Parser classusing(Parserparser=newParser(filePath)){// Extract data from PDF documentDocumentDatadata=parser.ParseForm();// Iterate over extracted datafor(inti=0;i<data.Count;i++){Console.Write(data[i].Name+": ");PageTextAreaarea=data[i].PageAreaasPageTextArea;Console.WriteLine(area==null?"Not a template field":area.Text);}}