NewChildFormField
Version history
This function was introduced in Quick PDF Library version 7.18.
Description
Adds a new form field to the selected page as a child of another field.
Syntax
Delphi
function TQuickPDF0813.NewChildFormField(Index: Integer; Title: WideString;
FieldType: Integer): Integer;
ActiveX
Function QuickPDF0813.PDFLibrary::NewChildFormField(Index As Long, Title As String,
FieldType As Long) As Long
DLL
int QuickPDFNewChildFormField(int InstanceID, int Index, wchar_t * Title,
int FieldType)
Parameters
| Index | The index of the parent field. |
| Title | The title of the new form field. The title cannot contain the period "." character. |
| FieldType |
The type of the field to create: 1 = Text 2 = Pushbutton 3 = Checkbox 4 = Radiobutton 5 = Choice 6 = Signature 7 = Parent |
Return values
| 0 | The new form field could not be created |
| Non-zero | The form field was created successfully, and this is the index of the new field |