 | PdfiumFPDFInterForm_GetField Method |
Gets field specified by a index and a parent field in the hierarchy of fields
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static IntPtr FPDFInterForm_GetField(
IntPtr interForm,
int index,
string csFieldName = null
)
Public Shared Function FPDFInterForm_GetField (
interForm As IntPtr,
index As Integer,
Optional csFieldName As String = Nothing
) As IntPtr
public:
static IntPtr FPDFInterForm_GetField(
IntPtr interForm,
int index,
String^ csFieldName = nullptr
)
static member FPDFInterForm_GetField :
interForm : IntPtr *
index : int *
?csFieldName : string
(* Defaults:
let _csFieldName = defaultArg csFieldName null
*)
-> IntPtr
public static IntPtr FPDFInterForm_GetField(
IntPtr interForm,
int index,
String csFieldName = null
)
Patagames.Pdf.Pdfium.FPDFInterForm_GetField = function(interForm, index, csFieldName);
Parameters
- interForm IntPtr
- Handle to interactive forms. Returned by FORM_GetInterForm(IntPtr) function.
- index Int32
- Index of Field ranging from 0 to FPDFInterForm_CountFields(IntPtr, String)
- csFieldName String (Optional)
- The name of the parent field in the hierarchy of fields or null for the root.
Return Value
IntPtrThe Field object from the hierarchy of document's fields.
See Also