WITH
Cont := TRttiContext.Create;
for Prop in Cont.GetType(TStrings).GetDeclaredProperties do
Memo1.Lines.Add(Prop.ToString);
Cont.Free;
I get a list of all TStrings properties except indexed properties (strings, values, ...). As I see in the Get [Declared] properties, the properties are never indexed. How can I get indexed properties?
source
share