property NewLineMode : Boolean
Determines the action of a line feed character.
A line feed character (hex 10) received by a VT100 terminal can do one of two things. If this property is False, the cursor is advanced one row down, keeping in the same column, scrolling the display up if necessary. The Enter key sends a single <CR> character.
If this property is True, the cursor is advanced one row down, moved to the first column, and the display scrolled up if necessary. The Enter key sends a pair of characters: <CR><LF>.
The host computer determines this mode. Although you can change this property, it is inadvisable to do so. It may result in bizarre displays since the host is assuming something that is no longer true.