Lua:getForm
Jump to navigation
Jump to search
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
1 for i = 0, getFormCount() - 1 do
2 local frm = getForm(i)
3 print(frm.ClassName)
4 print(frm.Caption)
5 end