GetFormFieldGroup

Description

Gets a form field group (PDFFormFieldGroup object) based on its index in a PDF document.

Applies to

PDFDocument object

Syntax

PDFFormFieldGroup GetFormFieldGroup(long index)

Argument

Description

index

The index of the PDFFormFieldGroup object.


Return value

PDFFormFieldGroup. Returns the PDFFormFieldGroup object if it succeeds and null if an error occurs.

Usage

Call the function to return a PDFFormFieldGroup object that is added in the current PDF document.

Examples

This example returns the PDFFormFieldGroup with the index 1 in the document lpdf_doc.

PDFformfieldgroup lpdf_group1
//Find the PDFFormFieldGroup object with the index 1
lpdf_group1= lpdf_doc.getformfieldgroup(1)

See also

AddFormFieldGroup

GetFormFieldGroupCount

RemoveAllFormFieldGroup

RemoveFormFieldGroup