Difference between revisions of "Lua:getMainForm"
Jump to navigation
Jump to search
m (Reverted edits by This content is not available (Talk) to last revision by TheyCallMeTim13) |
|||
| Line 1: | Line 1: | ||
| − | + | [[Category:Lua]] | |
| + | '''function''' getMainForm() ''':''' [[Form]] | ||
| + | |||
| + | Returns the main [[Form]]. | ||
| + | |||
| + | {{LuaFunctionParametersNone}} | ||
| + | |||
| + | == Examples == | ||
| + | local mainForm = getMainForm() | ||
| + | local someTimer = createTimer(mainForm, false) | ||
| + | |||
| + | {{LuaSeeAlso}} | ||
| + | |||
| + | === Related Functions === | ||
| + | * [[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 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)