Difference between revisions of "TStringList"

From Free Pascal wiki
Jump to navigationJump to search
m (data structures -> containers)
(Inheritance)
Line 1: Line 1:
A '''TStringList''' is a datatype that can hold an arbitrary list of [[String|strings]]. The strings in a TStringList are accessible as plain text or as a series of strings.
+
A '''TStringList''' is a datatype that can hold an arbitrary length list of [[String|strings]]. The strings in a TStringList are accessible as concatenated plain text or as a series of strings.
 +
 
 +
== Inheritance ==
 +
*[[TObject]] - Base class of all classes.; [[IFPObserved]] - Interface implemented by an object that can be observed.
 +
**[[TPersistent]] - Base class for streaming system and persistent properties.
 +
***[[TStrings]] - Class to manage arrays or collections of strings
 +
**** TStringList - Standard implementation of the TStrings class.
  
 
==See also==
 
==See also==

Revision as of 11:01, 18 August 2016

A TStringList is a datatype that can hold an arbitrary length list of strings. The strings in a TStringList are accessible as concatenated plain text or as a series of strings.

Inheritance

  • TObject - Base class of all classes.; IFPObserved - Interface implemented by an object that can be observed.
    • TPersistent - Base class for streaming system and persistent properties.
      • TStrings - Class to manage arrays or collections of strings
        • TStringList - Standard implementation of the TStrings class.

See also