Lua:getForm
								
								Jump to navigation
				Jump to search
				
		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

