Difference between revisions of "Lua:getMainForm"

From Cheat Engine
Jump to navigation Jump to search
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13)
 
(5 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
Returns the main [[Form]].
 
Returns the main [[Form]].
  
===Function Parameters===
+
{{LuaFunctionParametersNone}}
<none>
 
  
 
== Examples ==
 
== Examples ==
Line 11: Line 10:
 
  local someTimer = createTimer(mainForm, false)
 
  local someTimer = createTimer(mainForm, false)
  
== See also ==
+
{{LuaSeeAlso}}
* [[Lua]]
 
* [[Help_File:Script engine|Script engine]]
 
  
 
=== Related Functions ===
 
=== Related Functions ===
* [[getForm]]
+
* [[Lua:getForm|getForm]]
* [[getFormCount]]
+
* [[Lua:getFormCount|getFormCount]]
* [[getSettingsForm]]
+
* [[Lua:getMainForm|getMainForm]]
* [[getMemoryViewForm]]
+
* [[Lua:getSettingsForm|getSettingsForm]]
* [[getLuaEngine]]
+
* [[Lua:getLuaEngine|getLuaEngine]]
* [[registerFormAddNotification]]
+
* [[Lua:registerFormAddNotification|registerFormAddNotification]]
  
 
=== Related Classes ===
 
=== Related Classes ===
* [[Form]]
+
* [[Lua:Class:Form|Form]]
* [[Component]]
+
* [[Lua:Class:Component|Component]]
* [[Control]]
+
* [[Lua:Class:Control|Control]]
* [[WinControl]]
+
* [[Lua:Class:WinControl|WinControl]]
* [[Application]]
+
* [[Lua:Class:Application|Application]]
* [[Object]]
+
* [[Lua:Class:Object|Object]]

Latest revision as of 19:07, 18 March 2019

function getMainForm() : Form

Returns the main Form.

Function Parameters[edit]

<none>

Examples[edit]

local mainForm = getMainForm()
local someTimer = createTimer(mainForm, false)

See also[edit]

Related Functions[edit]

Related Classes[edit]