Hi Team,
We are filling pdf acroforms using aspose pdf. While filling we are changing Color for that field also. For that we are using code like below
DefaultAppearance defaultapp = new DefaultAppearance();
Color color = new Color({R}, {G}, {B},{A});
defaultapp.setTextColor(color);
textField.setDefaultAppearance(defaultapp);
This code is changing the color but it is not retaining original Font Size . Is there any way we can get original Font Size of pdf formfield.
Please share your suggestions