Difference between revisions of "Lua:Class:Object"

From Cheat Engine
Jump to navigation Jump to search
Line 1: Line 1:
'''Object Class''': (Inheritance: None)
+
Object '''class''': ('''Inheritance''': )
  
Base class for all objects
+
Base class for all objects.
  
===Properties===
+
== Properties ==
  ClassName: String - The name of class (Read only)
+
; ClassName : string
 +
: The name of class (Read only)
  
===Methods===
+
== Functions ==
  getClassName(): Returns the classname
+
; getClassName() : string
  destroy(): Destroys the object
+
: Returns the class name
  
 +
== Methods ==
 +
; destroy()
 +
: Destroys the object
  
----
+
== See also ==
 +
* [[Lua]]
 +
* [[Help_File:Script engine|Script engine]]
  
* [[Lua|Lua Functions and Classes]]
+
=== 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

See also

Related Functions

Related Classes