EE_GET_STATUSW

Retrieves the Unicode text displayed on the status bar. You can send this message explicitly or use the Editor_GetStatusW inline function.

EE_GET_STATUSW
wParam = nBufSize;
lParam = (LPARAM) (LPWSTR) szStatus;

Parameters

nBufSize

Specifies the size of buffer in characters to retrieve the string including the terminating null character. You can specify 0 if szStatus is NULL. If the buffer size is not enough, szStatus will retrieve no string.

szStatus

Specifies the buffer to retrieve the string. If NULL is specified, returns the size of the buffer enough to retrieve the string.

Return Values

Returns the size of the buffer in characters enough to retrieve the string including the terminating null character.