Finds and returns a top-level form field specified by Name.
If no fields under this name are found, the method returns null.
This method is useful for automatic form fill-out purposes.
The Form Field Finder online application
enables you to determine which field names your PDF form supports.
Usage:
PdfDocument objDoc = objPDF.OpenDocument( @"c:\1040nr.pdf" );
PdfAnnot objField = ovhDoc.Form.FindField("txtFirstName");
objField.SetFieldValue( "John", objFont );
For more information, see Chapter 12 - Form Fill-in.