[Overview][Types][Classes][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Implements a string list used in Memo controls.
Source position: textstrings.pas line 45
type TCustomMemoStrings = class(TStrings) |
||
protected |
||
procedure DoReadData(); virtual; |
|
Reads and stores the values used in the Strings property. |
procedure DoWriteData(); virtual; |
|
Writes the values in the Strings property. |
procedure DefineProperties(); override; |
|
Defines the Strings property and the read and write procedures for its data. |
end; |
|
Implements a string list used in Memo controls. |
|
| | ||
| | ||
| | ||
TCustomMemoStrings is a TStrings descendant which works around the behavior of TMemo.Lines. In TMemo, Lines contains the text with wordwrap line endings. TCustomMemoStrings stores the text in an LFM without those wordwrap line endings.
|
Implements a string list optimized to handle the complete text as a whole (instead of line by line as in TStringList). |
|
Version 4.0 | Generated 2025-05-03 | Home |