EM_GETLINE (Compact 2013)

3/28/2014

This message copies a line of text from an edit control and places the text in a specified buffer.

Syntax

EM_GETLINE 
    wParam = (WPARAM) line; 
    lParam = (LPARAM)(LPCSTR) lpch;

Parameters

  • line
    Specifies the zero-based index of the line to retrieve from a multiline edit control. A value of zero specifies the topmost line. This parameter is ignored by a single-line edit control.
  • lpch
    Long pointer to the buffer that receives a copy of the line. The first word of the buffer specifies the maximum number of characters that can be copied to the buffer.

Return Value

The number of characters copied indicates success. Zero indicates that the line number specified by the line parameter is greater than the number of lines in the edit control.

Remarks

The copied line does not contain a terminating null character.

Requirements

Header

windows.h

See Also

Reference

Edit Box Messages
EM_LINELENGTH
WM_GETTEXT