TStringItem defines a TStringList entry.
TStringItem = record FString: string; FObject: TObject; end;
struct TStringItem { AnsiString FString; TObject * FObject; };
The TStringItem type defines a data structure used internally in Delphi.
It is used by TStringList to hold a list entry.
FString defines string for a list entry.
FObject points to an optional TObject associated with the string.
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
What do you think about this topic? Send feedback!
|