Whatever message this page gives is out now! Go check it out!
Tag | Description |
cfpdfform | Reads data from a form and writes it to a file or populates a form with data from a data source. |
cfpdfformparam | A child tag of the cfpdfform tag or the cfpdfsubform tag; populates individual fields in PDF forms. |
cfpdfsubform | A child tag of the cfpdfform tag; creates the hierarchy of the PDF form so that form fields are filled properly. The cfpdfsubform tag contains one or more cfpdpformparam tags. |
Task | Tags and actions |
Populate a PDF form with XML data | populate action of the cfpdf tag |
Prefill individual fields in a PDF form with data from a data source | populate action of the cfpdfform tag with the cfpdfsubform and cfpdfparam tags |
Determine the structure of a PDF form | read action of the cfpdfform tag with the cfdump tag |
Embed an interactive PDF form within a PDF document | populate action of the cfpdfform tag within the cfdocument tag.Note: The cfpdfform tag must be at the same level as the cfdocumentsection tags, not contained within them. |
Write a PDF form directly to the browser | populate action of the cfpdfform tag with the destination attribute not specified |
Write PDF form output to an XML file | read action of the cfpdfform tag |
Print a PDF form from ColdFusion | cfprint tag |
Extract data from a PDF form submission | source="#PDF.Content#" for the read action of the cfpdfform tag |
Write data extracted from a PDF form submission to a PDF file | source="#PDF.Content#" for the populate action of the cfpdfform tag, and the destination attribute |
Write data in a form generated in LiveCycle to an XDP file | source="#PDF.Content#" for the populate action of the cfpdfform tag, and an XDP extension for the output file |
Extract data from an HTTP post submission | cfdump tag determines the structure of the form data; map the form fields to the output fields |
Flatten forms generated in Acrobat (not used forms generated in LiveCycle) | cfpdf For more information, see Flattening forms created in Acrobat in Using shortcuts for common tasks. |
Merge forms generated in Acrobat or LiveCycle with other PDF documents | cfpdf action="merge" For more information, see Merging PDF documents in Using shortcuts for common tasks. |