I am trying to update field in a XFA pdf file. I am able to do so for text fields:
XFA xfa = doc.getForm().get_xfa();
xfa.set_Item("field", "value");
How to make a radio button selection this way?
I am trying to update field in a XFA pdf file. I am able to do so for text fields:
XFA xfa = doc.getForm().get_xfa();
xfa.set_Item("field", "value");
How to make a radio button selection this way?