{
PdfContentByte cb = outputDevice.getCurrentPage();
PdfWriter writer = outputDevice.getWriter();
PdfAcroForm acroForm = writer.getAcroForm();
Element elem = box.getElement();
String name = getFieldName(outputDevice, elem);
String value = getValue(elem);
acroForm.addHiddenField(name, value);
}