Hi,
I am working with an existing PDF that has 3 instances of a text field, "signDate". When I examine the PdfTextBoxFieldWidget for this field, it has 3 WidgetItems, which I am guessing somehow represent the 3 instances.
I want to set the ForeColor and Font for all instances. When I do this:
Dim fld As Spire.Pdf.Widget.PdfTextBoxFieldWidget = [this is set to my field]
fld.ForeColor = New PdfRGBColor(0, 0, 255)
it works fine for the FIRST instance of the field on the resulting PDF. How do I set the forecolor for the other instances? The WidgetItems do not have the ForeColor property.
Same question with the Font property.
In summary, I really do not understand the organization/representation of PDF fields with multiple instances. And I could not find any documentation on this topic.
Thank you!