Difference between revisions of "Object:getClass"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2015.08<br/> === Description === Returns the class name of the instance as string <source lang="lua"> (string), = Object:getClass() </...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2015.08<br/> | '''Available since:''' Gideros 2015.08<br/> | ||
+ | '''Class:''' [[Object]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
− | Returns the class name of the instance as string | + | Returns the class name of the instance as string. |
− | < | + | <syntaxhighlight lang="lua"> |
− | (string) | + | (string) = Object:getClass() |
− | </ | + | </syntaxhighlight> |
+ | |||
+ | === Return values === | ||
'''Returns''' (string) class name as string<br/> | '''Returns''' (string) class name as string<br/> | ||
+ | |||
+ | {{Object}} |
Latest revision as of 14:32, 13 July 2023
Available since: Gideros 2015.08
Class: Object
Description
Returns the class name of the instance as string.
(string) = Object:getClass()
Return values
Returns (string) class name as string