Declaration: |
ChartBook.Memos[].Lines: TStringList; |
Contains the text lines of the memo field. Please note that the index of the Lines property is 0-based. See the description of TStringList for further details.
|
Hint: |
The Lines property can be used to add new lines by using its Add method. For example, the statement Memos[2].Lines.Add('Good Vibrations') adds the text "Good Vibrations" to the current text of Memo 2. |
|