Difference between revisions of "Lua:getForm"
Jump to navigation
Jump to search
m (moved getForm to Lua:getForm) |
(→Related Functions) |
||
Line 25: | Line 25: | ||
=== Related Functions === | === Related Functions === | ||
− | * [[getFormCount]] | + | * [[Lua:getFormCount|getFormCount]] |
− | * [[getMainForm]] | + | * [[Lua:getMainForm|getMainForm]] |
− | * [[getSettingsForm]] | + | * [[Lua:getSettingsForm|getSettingsForm]] |
− | * [[getMemoryViewForm]] | + | * [[Lua:getMemoryViewForm|getMemoryViewForm]] |
− | * [[getLuaEngine]] | + | * [[Lua:getLuaEngine|getLuaEngine]] |
− | * [[registerFormAddNotification]] | + | * [[Lua:registerFormAddNotification|registerFormAddNotification]] |
Revision as of 01:11, 25 January 2018
function getForm(Index)
Returns the form at the specific index.
Function Parameters
Parameter | Type | Description |
---|---|---|
Index | integer | The index of the form to get |
Examples
for i = 1, getFormCount() - 1 do local frm = getForm(i) print(frm.ClassName) print(frm.Caption) end