Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagedelphi
titleScripting
linenumberstrue
collapsetrue
try
  lst := tstringlist.create;
  lst.text := getpropertyattributelist(itempath, 'Name');
  for ndx := 0 to lst.count - 1 do
    output(lst.strings[ndx]);
finally
  lst.free;
end;
exit;