Difference between revisions of "Lua:getForm"
Jump to navigation
Jump to search
(→Related Functions) |
m (Correct the example to list all forms (it was missing the first one)) |
||
Line 16: | Line 16: | ||
== Examples == | == Examples == | ||
− | for i = | + | for i = 0, getFormCount() - 1 do |
local frm = getForm(i) | local frm = getForm(i) | ||
print(frm.ClassName) | print(frm.ClassName) |
Latest revision as of 09:00, 24 August 2020
function getForm(Index)
Returns the form at the specific index.
Function Parameters[edit]
Parameter | Type | Description |
---|---|---|
Index | integer | The index of the form to get |
Examples[edit]
for i = 0, getFormCount() - 1 do local frm = getForm(i) print(frm.ClassName) print(frm.Caption) end