Return to v1.4.5 docs

hasProperty()



Returns true if the specified property name exists on the model.

Name Type Required Default Description
property string Yes Name of property to inspect.
hasProperty(property) <!--- Get an object, set a value and then see if the property exists --->
<cfset employee = model("employee").new()>
<cfset employee.firstName = "dude">
<cfset employee.hasProperty("firstName")><!--- returns true --->

<!--- This is also a dynamic method that you could do --->
<cfset employee.hasFirstName()>