Difference between revisions of "Lua:Class:Object"
Jump to navigation
Jump to search
(Created page with ''''Object Class''': (Inheritance: None) Base class for all objects ===Properties=== ClassName: String - The name of class (Read only) ===Methods=== getClassName(): Returns…') |
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
||
(11 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | ''' | + | [[Category:Lua]] |
+ | Object '''class''': ('''Inheritance''': ) | ||
− | Base class for all objects | + | Base class for all objects. |
− | + | == Properties == | |
− | + | ; ClassName : string : ''Readonly'' | |
+ | : The name of class. | ||
− | + | == Methods == | |
− | + | ; getClassName() : string | |
− | + | : Returns the class name | |
+ | |||
+ | ; destroy() | ||
+ | : Destroys the object | ||
+ | |||
+ | {{LuaSeeAlso}} | ||
+ | |||
+ | === Related Functions === | ||
+ | * [[Lua:createClass|createClass]] | ||
+ | * [[Lua:inheritsFromObject|inheritsFromObject]] | ||
+ | * [[Lua:inheritsFromComponent|inheritsFromComponent]] | ||
+ | * [[Lua:inheritsFromControl|inheritsFromControl]] | ||
+ | * [[Lua:inheritsFromWinControl|inheritsFromWinControl]] | ||
+ | |||
+ | === Related Classes === | ||
+ | * [[Lua:Class:Component|Component]] | ||
+ | * [[Lua:Class:Control|Control]] | ||
+ | * [[Lua:Class:WinControl|WinControl]] | ||
+ | * [[Lua:Class:Application|Application]] | ||
+ | * [[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