|
IsPDFObject
DescriptionDetermines
whether a value is a PDF object.
ReturnsTrue,
if the value represents a PDF object. False if the value is any
other type of data, such as an integer, string, date, or structure.
Function syntaxIsPDFObject(value)
See alsoIsDate, IsImage, IsNumeric, IsNumericDate, IsObject, IsPDFFile, IsQuery, IsSimpleValue, IsStruct, IsWDDX, IsXmlDoc, IsXmlElem, IsXmlRoot, cfpdf, cfpdfform
HistoryColdFusion
8: Added this function.
Parameters
Parameter
|
Description
|
value
|
A value, typically the PDF object stored
as a variable name.
|
UsageThis function
returns False for query and XML objects.
Example<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>
|