使用
Cont := TRttiContext.Create;
for Prop in Cont.GetType(TStrings).GetDeclaredProperties do
Memo1.Lines.Add(Prop.ToString);
Cont.Free;
我获得除了索引属性(字符串,值,...)之外的所有TStrings属性的列表。 正如我在Get [Declared]中看到的那样,属性永远不是索引属性。我怎样才能获得索引属性?
答案 0 :(得分:4)
你做不到。它们不包含在Delphi 2010的RTTI中。