我在一个pdf文档中有很多字段, 我想为所有的域设置一个属性 。
例如:
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.