Difference between revisions of "Object:isInstanceOf"
From GiderosMobile
Line 6: | Line 6: | ||
(boolean) = Object:isInstanceOf(classname) | (boolean) = Object:isInstanceOf(classname) | ||
</source> | </source> | ||
− | '''classname''': (string) The name of the class to check relation to | + | === Parameters === |
+ | '''classname''': (string) The name of the class to check relation to <br/> | ||
+ | === Return values === | ||
'''Returns''' (boolean) true if instance belongs or inherits from class, false otherwise<br/> | '''Returns''' (boolean) true if instance belongs or inherits from class, false otherwise<br/> |
Revision as of 10:45, 23 August 2018
Available since: Gideros 2015.08
Description
Returns true if instance is of provided class name or if it inherits from provided class name
(boolean) = Object:isInstanceOf(classname)
Parameters
classname: (string) The name of the class to check relation to
Return values
Returns (boolean) true if instance belongs or inherits from class, false otherwise