System.Classes.TStringItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TStringItem = record
    FString: string;
    FObject: TObject;
  end;

C++

struct DECLSPEC_DRECORD TStringItem
{
public:
    System::UnicodeString FString;
    System::TObject* FObject;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
System.Classes.pas
System.Classes.hpp
System.Classes System.Classes

Description

TStringItem defines a TStringList entry.

The TStringItem type defines a data structure used internally in Delphi. TStringItem is used to define a list entry in a TStringList.

FString defines the string for a list entry.

FObject points to an optional TObject associated with the string.

See Also