Difference between revisions of "Lua:getForm"

From Cheat Engine
Jump to navigation Jump to search
(Created page with ''''function''' getForm(''Index'') Returns the form at the specific index. === Function Parameters === {|width="85%" cellpadding="10%" cellpadding="5%" cellspacing="0" border="0…')
(No difference)

Revision as of 08:15, 11 March 2017

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)
  if frm.ClassName = 'TMainForm' then
    -- ...
    break
  end
end

See also

Related Functions