To open any link in a new tab, preserving your position in the current article, just hold down the <CTRL> key on your keyboard before clicking the link or click using your mouse wheel.

Properties - GetPropertyAttributeList - FD

Properties - GetPropertyAttributeList

Returns a Name=Value list of the given property attributes.

Declaration:

GetPropertyAttributeList(Itempath, PropertyName: String): String;

Source Code

Delphi

Scripting
try
  lst := tstringlist.create;
  lst.text := getpropertyattributelist(itempath, 'Name');
  for ndx := 0 to lst.count - 1 do
    output(lst.strings);
finally
  lst.free;
end;
exit;

Copyright 2023 ConstructConnect