Whatever message this page gives is out now! Go check it out!
IsPDFObject(value)| Parameter | Description |
value | A value, typically the PDF object stored as a variable name. |
<cfpdf source="c:\forms\'uoteform.pdf" action="read" name="myPDFform"/>
<cfif IsPDFObject(myPDFform)>
<cfpdf source=#myPDFform# action="write" destination = "c:\forms\newPDFForm.pdf">
<cfelse>
<p>This is not a PDF.</p>
</cfif>