 | PdfiumFPDF_SetFormFieldHighlightColor Method |
Set the highlight color of specified or all the form fields in the document.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDF_SetFormFieldHighlightColor(
IntPtr form_handle,
FormFieldTypes field_type,
int color
)
Public Shared Sub FPDF_SetFormFieldHighlightColor (
form_handle As IntPtr,
field_type As FormFieldTypes,
color As Integer
)
public:
static void FPDF_SetFormFieldHighlightColor(
IntPtr form_handle,
FormFieldTypes field_type,
int color
)
static member FPDF_SetFormFieldHighlightColor :
form_handle : IntPtr *
field_type : FormFieldTypes *
color : int -> unit
public static void FPDF_SetFormFieldHighlightColor(
IntPtr form_handle,
FormFieldTypes field_type,
int color
)
Patagames.Pdf.Pdfium.FPDF_SetFormFieldHighlightColor = function(form_handle, field_type, color);
Parameters
- form_handle IntPtr
- Handle to the form fill module. Returned by {0} Overload.
- field_type FormFieldTypes
- A 32-bit integer indicating the type of a form field.
- color Int32
- The highlight color of the form field.Constructed by 0xxxrrggbb.
RemarksWhen the parameter fieldType is set to zero, the highlight color will be applied to all the form fields in the document.
Please refresh the client window to show the highlight immediately if necessary.
See Also