August 2003
Intermediate to advanced
1140 pages
68h 45m
English
IsStruct
IsStruct(variable)Returns true if the specified variable is a
ColdFusion structure or false if it
isn’t. Examples:
<cfset Employee=StructNew( )> <cfset Employee.Name="Pere Money"> <cfset Employee.Title="President"> <cfset Employee.Department="Executive Management"> <cfset Employee.Email="pmoney@example.com"> <cfset Employee.PhoneExt="1234"> Is Employee a structure? <cfoutput>#IsStruct(Employee)#</cfoutput>