Edit

Share via


LineWrapMode Enum

Definition

Controls what happens when the cursor moves beyond the end of the display (both horizontally or vertically).

public enum LineWrapMode
type LineWrapMode = 
Public Enum LineWrapMode
Inheritance
LineWrapMode

Fields

Truncate 0

The cursor will stay beyond the edge of the screen. Any further write attempts will not do anything until the cursor is moved or the display cleared. A newline will move to the next line, unless already on the last line of the display.

WordWrap 2

Attempts to wrap at word borders when the text does not fit on the (remaining part of) the line.

Wrap 1

Wraps to the next line if the end of the line is reached.

Applies to