Difference between revisions of "TStrings"

From Lazarus wiki
Jump to navigationJump to search
(Created page with "A '''TStrings''' is a datatype that can hold an arbitrary length list of strings. The strings in a TStrings are accessible as concatenated plain text or as a series...")
 
Line 8: Line 8:
 
==See also==
 
==See also==
 
* [[doc:rtl/classes/tstrings.html|TStrings doc]]
 
* [[doc:rtl/classes/tstrings.html|TStrings doc]]
 +
* [[TStringList]]
 
* [[TStringList-TStrings Tutorial]]  
 
* [[TStringList-TStrings Tutorial]]  
  
 
[[Category:RTL]]
 
[[Category:RTL]]
 
[[Category:Containers]]
 
[[Category:Containers]]

Revision as of 12:53, 23 February 2017

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

Inheritance

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

See also