 | PdfiumFPDFFormField_GetFieldDict Method |
Get field's dictionary
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFFormField_GetFieldDict(
IntPtr frmField
)
Public Shared Function FPDFFormField_GetFieldDict (
frmField As IntPtr
) As IntPtr
public:
static IntPtr FPDFFormField_GetFieldDict(
IntPtr frmField
)
static member FPDFFormField_GetFieldDict :
frmField : IntPtr -> IntPtr
public static IntPtr FPDFFormField_GetFieldDict(
IntPtr frmField
)
Patagames.Pdf.Pdfium.FPDFFormField_GetFieldDict = function(frmField);
Parameters
- frmField IntPtr
- Handle to field. Returned by FPDFInterForm_GetField(IntPtr, Int32, String) function./
Return Value
IntPtrHandle to field's dictionary.
Remarks
Each field in a document’s interactive form is defined by a field dictionary, which
must be an indirect object. The field dictionaries may be organized hierarchically
into one or more tree structures. Many field attributes are inheritable, meaning
that if they are not explicitly specified for a given field, their values are taken from
those of its parent in the field hierarchy.
The designation(Required; inheritable) means that an
attribute must be defined for every field, whether explicitly in its own field dictionary or
by inheritance from an ancestor in the hierarchy.
See Also