SetFormFieldValueByTitle

Form fields

Description

Sets the value of all the form fields with the specified title. The appearance streams for the form fields are generated if SetNeedAppearances(1) has been called.

Syntax

Delphi

function TPDFlib.SetFormFieldValueByTitle(Const Title, NewValue: WideString): Integer;

ActiveX

Function PDFlib::SetFormFieldValueByTitle(Title As String, NewValue As String) As Long

DLL

int DLSetFormFieldValueByTitle(int InstanceID, wchar_t * Title, wchar_t * NewValue);

Parameters

TitleThe title of the form field to set.
NewValueThe new value of the form field. For multi-line text fields you can use Chr(13) or Chr(13) + Chr(10) to force a line feed between lines.

Return values

0The form field could not be found
1The value of the form field was set successfully