RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
WideStrings.TWideStringItem Record

TWideStringItem defines a TWideStringList entry.

Pascal
TWideStringItem = record
  FString: WideString;
  FObject: TObject;
end;
C++
struct TWideStringItem {
  BSTR FString;
  TObject * FObject;
};

The TWideStringItem type defines a data structure used internally in Delphi. 

It is used by TWideStringList to hold a list entry.  

FString defines an Unicode 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!