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) |
m (Syntax Highlighting.) |
||
| Line 7: | Line 7: | ||
== Examples == | == Examples == | ||
| − | + | <syntaxhighlight lang="lua" line> | |
| − | + | local mainForm = getMainForm() | |
| + | local someTimer = createTimer(mainForm, false) | ||
| + | </syntaxhighlight> | ||
{{LuaSeeAlso}} | {{LuaSeeAlso}} | ||
| − | + | {{Forms}} | |
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
| − | |||
Revision as of 19:53, 25 June 2026
function getMainForm() : Form
Returns the main Form.
Function Parameters
<none>
Examples
1 local mainForm = getMainForm()
2 local someTimer = createTimer(mainForm, false)