EM_FMTLINES

An application sends an EM_FMTLINES message to set the inclusion flag of soft line break characters on or off within a multiline edit control. A soft line break consists of two carriage returns and a linefeed and is inserted at the end of a line that is broken because of word wrapping.

EM_FMTLINES 
wParam = (WPARAM) (BOOL) fAddEOL;   // line break flag 
lParam = 0;                         // not used; must be zero 
 

Parameters

fAddEOL
Value of wParam. Specifies whether soft-line break characters are to be inserted. A value of TRUE inserts the characters; a value of FALSE removes them.

Return Values

The return value is identical to the fAddEOL parameter.

Remarks

This message affects only the buffer returned by the EM_GETHANDLE message and the text returned by the WM_GETTEXT message. It has no effect on the display of the text within the edit control.

The EM_FMTLINES message does not affect a line that ends with a hard line break. A hard line break consists of one carriage return and a linefeed.

Note that the size of the text changes when this message is processed.

QuickInfo

  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Requires version 1.0 or later.
  Header: Declared in winuser.h.

See Also

Edit Controls Overview, Edit Control Messages, EM_GETHANDLE, WM_GETTEXT