ShowMessage(TRttiContext.Create.GetType(TStringList)
.GetProperty('Strings').ToString);
The above code does not work, since .GetProperty returns nil on properties such as "Strings", "Objects", "Values" (with indexers). I assume this is a known limitation, and the question is whether there is a way to access these indexed properties (preferably without reverting to the old RTTI utilities).
source
share