Click or drag to resize

PdfiumFPDFFormField_GetFullName Method

Get the fully qualified field name.

Namespace: Patagames.Pdf
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public static string FPDFFormField_GetFullName(
	IntPtr frmField
)

Parameters

frmField  IntPtr
Handle to field. Returned by FPDFInterForm_GetField(IntPtr, Int32, String) function./

Return Value

String
Field full name
Remarks

The fully qualified field name is not explicitly defined but is constructed from the partial field names of the field and all of its ancestors. For a field with no parent, the partial and fully qualified names are the same. For a field that is the child of another field, the fully qualified name is formed by appending the child field’s partial name to the parent’s fully qualified name, separated by a period (.): parent’s_full_name.child’s_partial_name

See Also