Properties - GetPropertyName
Returns the name of the nth property in the propertylist.
...
GetPropertyName(ItemPath: String; Index: Integer): String;
Source Code
...
Delphi
Code Block | ||||||||||
---|---|---|---|---|---|---|---|---|---|---|
| ||||||||||
for ndx := 0 to GetPropertyCount(itempath) -1 do output(GetPropertyName(itempath, ndx)); |
...