Difference between revisions of "Lua:Class:Object"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
− | ''' | + | Object '''class''': ('''Inheritance''': ) |
− | Base class for all objects | + | Base class for all objects. |
− | + | == Properties == | |
− | + | ; ClassName : string | |
+ | : The name of class (Read only) | ||
− | == | + | == Functions == |
− | + | ; getClassName() : string | |
− | + | : Returns the class name | |
+ | == Methods == | ||
+ | ; destroy() | ||
+ | : Destroys the object | ||
− | + | == See also == | |
+ | * [[Lua]] | ||
+ | * [[Help_File:Script engine|Script engine]] | ||
− | * [[ | + | === Related Functions === |
+ | * [[createClass]] | ||
+ | * [[inheritsFromObject]] | ||
+ | * [[inheritsFromComponent]] | ||
+ | * [[inheritsFromControl]] | ||
+ | * [[inheritsFromWinControl]] | ||
+ | |||
+ | === Related Classes === | ||
+ | * [[Component]] | ||
+ | * [[Control]] | ||
+ | * [[WinControl]] | ||
+ | * [[Application]] | ||
+ | * [[Form]] |
Revision as of 22:36, 10 March 2017
Object class: (Inheritance: )
Base class for all objects.
Properties
- ClassName : string
- The name of class (Read only)
Functions
- getClassName() : string
- Returns the class name
Methods
- destroy()
- Destroys the object