Navigation: Code Documentation > RSCommon > RSGenerics.Collections > Classes > TStringList<T> > Properties
TStringList<T>.DataValues Property
Returns the TValueCollection that is used to create enumerators
Namespace: RSGenerics.Collections
Delphi
public property DataValues: TValueCollection read GetDataValues;
Property Value
Type: TValueCollection
To iterate through all the data in the list:
var StringList: TStringList<Integer>; Item: Integer; begin for Item in StringList.DataValues do begin // do something with item end; end;
•RSGenerics.Collections.TStringList<T>.Data[Integer]
•TStringList<T>
•RSGenerics.Collections