getFormFieldValue

Get the value of a form field.
getFormFieldValue([in] LONG fieldHandle, [out, retval] BSTR *value)
This function returns the value of a form field (whose handle was obtained with getFormField). The nature of the value depends on the field type.
VB:
Dim field As Long Dim page As Integer Dim xMin As Double, yMin As Double, xMax As Double, yMax As Double For i = 0 To pdf.getNumFormFields() - 1 field = pdf.getFormField(i) type = pdf.getFormFieldType(field) name = pdf.getFormFieldName(field) pdf.getFormFieldBBox(field, page, xMin, yMin, xMax, yMax) maxLength = pdf.getFormFieldMaxLength(field) value = pdf.getFormFieldValue(field) ... Next i
getFormType
getNumFormFields
getFormField
getFormFieldType
getFormFieldName getFormFieldBBox
getFormFieldMaxLength