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…')
 
Line 17: Line 17:
 
  for i = 1, getFormCount() - 1 do
 
  for i = 1, getFormCount() - 1 do
 
   local frm = getForm(i)
 
   local frm = getForm(i)
   if frm.ClassName = 'TMainForm' then
+
   print(frm.ClassName)
    -- ...
+
  print(frm.Caption)
    break
 
  end
 
 
  end
 
  end
  

Revision as of 08:16, 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)
  print(frm.ClassName)
  print(frm.Caption)
end

See also

Related Functions