Difference between revisions of "Lua:getLuaEngine"

From Cheat Engine
Jump to navigation Jump to search
(Related Classes)
m
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
 
[[Category:Lua]]
 
[[Category:Lua]]
'''function''' getLuaEngine() ''':''' [[Form]]
+
{{CodeBox|'''function''' getLuaEngine() ''':''' [[Form]]}}
  
 
Returns the lua engine [[Form]] object (Creates it if needed).
 
Returns the lua engine [[Form]] object (Creates it if needed).
Line 8: Line 8:
  
 
== Examples ==
 
== Examples ==
local frm = getLuaEngine()
+
<syntaxhighlight lang="lua" line>
 +
local frm = getLuaEngine()
 +
</syntaxhighlight>
  
== See also ==
+
{{LuaSeeAlso}}
* [[Lua]]
 
* [[Help_File:Script engine|Script engine]]
 
  
=== Related Functions ===
+
{{Forms}}
* [[Lua:getForm|getForm]]
 
* [[Lua:getFormCount|getFormCount]]
 
* [[Lua:getMainForm|getMainForm]]
 
* [[Lua:getSettingsForm|getSettingsForm]]
 
* [[Lua:getLuaEngine|getLuaEngine]]
 
* [[Lua:registerFormAddNotification|registerFormAddNotification]]
 
 
 
=== Related Classes ===
 
* [[Lua:Class:Form|Form]]
 
* [[Lua:Class:Component|Component]]
 
* [[Lua:Class:Control|Control]]
 
* [[Lua:Class:WinControl|WinControl]]
 
* [[Lua:Class:Application|Application]]
 
* [[Lua:Class:Object|Object]]
 

Latest revision as of 00:18, 27 June 2026

<> Lua API Reference

function getLuaEngine() : Form

Returns the lua engine Form object (Creates it if needed).

Function Parameters[edit]

<none>

Examples[edit]

1 local frm = getLuaEngine()

Main Pages

Core Lua documentation entry points

Lua
Script Engine

Form Related Classes