Difference between revisions of "Lua:getMainForm"
Jump to navigation
Jump to search
(Created page with ''''function''' getMainForm() ''':''' From Returns the main Form. ===Function Parameters=== <none> == Examples == local mainForm = getMainForm() local someTimer…') |
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | '''function''' getMainForm() ''':''' [[ | + | [[Category:Lua]] |
+ | '''function''' getMainForm() ''':''' [[Form]] | ||
Returns the main [[Form]]. | Returns the main [[Form]]. | ||
− | + | {{LuaFunctionParametersNone}} | |
− | |||
== Examples == | == Examples == | ||
Line 10: | Line 10: | ||
local someTimer = createTimer(mainForm, false) | local someTimer = createTimer(mainForm, false) | ||
− | == | + | {{LuaSeeAlso}} |
− | * [[Lua]] | + | |
− | * [[ | + | === Related Functions === |
+ | * [[Lua:getForm|getForm]] | ||
+ | * [[Lua:getFormCount|getFormCount]] | ||
+ | * [[Lua:getMainForm|getMainForm]] | ||
+ | * [[Lua:getSettingsForm|getSettingsForm]] | ||
+ | * [[Lua:getLuaEngine|getLuaEngine]] | ||
+ | * [[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)