Posted by a ceTe Software moderator
Hello,
The export value will be set by the one who has created the check box and radio buttons. You should know this export value to check the check box. You can also know the export values of existing fields using the Acrobat Professional.
If you are creating the check box then you can set the export value using the ExportValue property of the check box or radio button object.
CheckBox cbY = new CheckBox("cb", 10, 10, 20, 20);
cbY.ExportValue = "Y";
In order to check the above check box you will have to use the "Y".
document.Form.Fields["cb"].Value = "Y";
Thanks,
ceTe Software Support Team.