Text

Declaration: TStringList.Text: string;
The Text property contains all strings of the string list as a single string delimited by carriage return, line feed pairs (ASCII 13, ASCII 10).

When reading Text, the strings in the list will be separated by carriage return and line feed. When setting Text, the value will be parsed by separating into substrings whenever a carriage return or linefeed is encountered. (The two do not need to form pairs).

Hint: If any of the strings in the list contain a carriage return or line feed, the resulting value of Text will appear to contain more strings than is indicated by the Count property.