Lua:getPropertyList

From Cheat Engine
Revision as of 10:30, 21 August 2020 by Ajanuw (talk | contribs) (Created page with "getPropertyList(class) : Returns a stringlist object containing all the published properties of the specified class (free the list when done) (Note, not all classed with prope...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

getPropertyList(class) : Returns a stringlist object containing all the published properties of the specified class (free the list when done) (Note, not all classed with properties have 'published' properties. E.g: stringlist)

r = getPropertyList(getInternet())

for i=0, r.Count-1, 1 do
  print( r[i] )
end