Lua:getForm

From Cheat Engine
Revision as of 01:11, 25 January 2018 by TheyCallMeTim13 (talk | contribs) (Related Functions)
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

for i = 1, getFormCount() - 1 do
  local frm = getForm(i)
  print(frm.ClassName)
  print(frm.Caption)
end

See also

Related Functions