Site icon Python GUI

What Is The Lines Property And How Do I Use It?

featuredimage2 4

The Lines Property contains the individual lines of text in the memo control. This works for native Windows development.

We use Lines to manipulate text in a memo control on a line-by-line basis. Lines is a DelphiVCL.Strings or TStrings object, so the TStrings methods may be used for Lines to perform manipulations such as counting the lines of text, adding new lines, deleting lines, or replacing lines with new text. For example:

[crayon-662e8ee52c0fa621322030/]

To work with all the text at once, use the Text property. To manipulate individual lines of text, the Lines property works better.

Note: Although Lines is implemented as a TStrings descendant, it does not implement the support for associating objects with the strings in the list.

 

Check out DelphiVCL which easily allows you to build GUIs for Windows using Python.

Exit mobile version