Whatever message this page gives is out now! Go check it out!
<cfpdfform ...>
<cfpdfformparam
name = "field name"
value = "ColdFusion variable"
index = "integer">
</cfpdfform>| Attribute | Req/Opt | Default | Description |
index | Optional | 1 | Index associated with the field name. If multiple fields have the same name, use the index value to locate one of them. Applies to forms created in LiveCycle only. |
name | Required | Field name on the PDF form. | |
value | Required | Value associated with the field name. For interactive fields, specify a ColdFusion variable. |
<!--- This example shows how to use multiple cfpdfformparam tags with the same name and
different index values for a PDF form that contains fields with same name. --->
<cfpdfform source="c:\payslipTemplate.pdf"
destination="c:\employeeid123.pdf" action="populate">
<cfpdfformparam name="phone" value="781-869-1234" index="1"/>
<cfpdfformparam name="phone" value="617-273-9021" index="2"/>
</cfpdfform>