SetFormFieldValueByTitleA
Form fields
Description
O sufixo A indica o ponto de entrada ANSI (char) da DLL; a superfície ActiveX/COM expõe apenas a forma Unicode. O comportamento é idêntico ao de SetFormFieldValueByTitle e os argumentos de cadeia de caracteres são interpretados com base na página de código atual definida por SetAnsiMode
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 DLSetFormFieldValueByTitleA(InstanceID: Integer; Title, NewValue: PAnsiChar): Integer;
DLL
int DLSetFormFieldValueByTitleA(int InstanceID, const char * Title, const char * NewValue);
Parameters
| Title | The title of the form field to set. |
|---|---|
| NewValue | The 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
| 0 | The form field could not be found |
|---|---|
| 1 | The value of the form field was set successfully |