I have many fields in a pdf document and I want to set a property for all of them.
example:
fields.SetFieldProperty("nr1", "textfont", baseFont, null);
fields.SetFieldProperty("nr2", "textfont", baseFont, null);
fields.SetFieldProperty("nr3", "textfont", baseFont, null);
fields.SetFieldProperty("nr4", "textfont", baseFont, null);
fields.SetFieldProperty("nr5", "textfont", baseFont, null);
Is there any method to set all fields at once with the same property?
I want to avoid setting each field separately.
something like that, maybe (untested)
or as I don’t know much about your code…