Name

IsXmlElem

Synopsis

                  IsXmlElem(value)

Returns true if value is an element of a ColdFusion XML document object. Example:

<cfhttp URL="http://www.macromedia.com/devnet/resources/macromedia_resources.xml"
        method="Get">
   
<cfset DesDev = XmlParse(cfhttp.FileContent)>
   
<cfoutput>
Is DesDev.macromedia_resources.resource.title an XML Element?
#IsXmlElem(DesDev.macromedia_resources.resource.title)#
</cfoutput>

To see the structure of the XML document object, use the cfdump tag.

Get Programming ColdFusion MX, 2nd Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.