SetFormFieldColor
Form fields, Colour
Description
Sets the colour of the text in the form field. The values of the colour parameters range from 0 to 1, with 0 indicating 0% and 1 indicating 100% of the colour.
Syntax
Delphi
function TPDFlib.SetFormFieldColor(Index: Integer; Red, Green, Blue: Double): Integer;ActiveX
Function PDFlib::SetFormFieldColor(Index As Long, Red As Double, Green As Double, Blue As Double) As LongDLL
int DLSetFormFieldColor(int InstanceID, int Index, double Red, double Green, double Blue);Parameters
| Index | The index of the form field to work with. The first form field has an index of 1. |
|---|---|
| Red | The red component of the colour |
| Green | The green component of the colour |
| Blue | The blue component of the colour |
Return values
| 0 | The form field could not be found |
|---|---|
| 1 | The form field text colour was set successfully |