With
Cont := TRttiContext.Create;
for Prop in Cont.GetType(TStrings).GetDeclaredProperties do
Memo1.Lines.Add(Prop.ToString);
Cont.Free;
I get list of all properties of TStrings except indexed properties (Strings, Values, ...). As I can see in Get[Declared]Properties are never indexed properties. How can I get indexed properties too?