printvisible

Determines whether an item is visible when the form is printed. To set whether the item is visible in the Viewer, use the visible option.

Syntax

   <printvisible>setting</printvisible>
Table 1. printvisible parameter
Parameter Type Description
setting on The item is visible when the form is printed.
  off The item is not visible when the form is printed.

Available in

box, button, check, checkgroup, combobox, field, label, line, list, popup, radio, radiogroup, slider

Examples

In this example, the nameField does not print due to the printvisible setting, but the addressField does because it defaults to the visible setting, which defaults to on.

   <field sid="nameField">
      <value>John Doe</value>
      <printvisible>off</printvisible>
   </field>
   <field sid="addressField">
      <value>123 Home Street</value>
   </field>

Usage details

  1. Default: defaults to the visible option for the item.
  2. This option overrides the visible option for the purposes of printing.