Difference between revisions of "Lua:Class:Object"
Jump to navigation
Jump to search
(→Properties) |
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Lua]] | ||
Object '''class''': ('''Inheritance''': ) | Object '''class''': ('''Inheritance''': ) | ||
Line 4: | Line 5: | ||
== Properties == | == Properties == | ||
− | ; ClassName : string : | + | ; ClassName : string : ''Readonly'' |
: The name of class. | : The name of class. | ||
Line 14: | Line 15: | ||
: Destroys the object | : Destroys the object | ||
− | + | {{LuaSeeAlso}} | |
− | |||
− | |||
=== Related Functions === | === Related Functions === | ||
− | * [[createClass]] | + | * [[Lua:createClass|createClass]] |
− | * [[inheritsFromObject]] | + | * [[Lua:inheritsFromObject|inheritsFromObject]] |
− | * [[inheritsFromComponent]] | + | * [[Lua:inheritsFromComponent|inheritsFromComponent]] |
− | * [[inheritsFromControl]] | + | * [[Lua:inheritsFromControl|inheritsFromControl]] |
− | * [[inheritsFromWinControl]] | + | * [[Lua:inheritsFromWinControl|inheritsFromWinControl]] |
=== Related Classes === | === Related Classes === | ||
− | * [[Component]] | + | * [[Lua:Class:Component|Component]] |
− | * [[Control]] | + | * [[Lua:Class:Control|Control]] |
− | * [[WinControl]] | + | * [[Lua:Class:WinControl|WinControl]] |
− | * [[Application]] | + | * [[Lua:Class:Application|Application]] |
− | * [[Form]] | + | * [[Lua:Class:Form|Form]] |
Latest revision as of 19:07, 18 March 2019
Object class: (Inheritance: )
Base class for all objects.
Properties[edit]
- ClassName : string : Readonly
- The name of class.
Methods[edit]
- getClassName() : string
- Returns the class name
- destroy()
- Destroys the object