EE_SET_STATUSW¶
Displays a Unicode message on the status bar. You can send this message explicitly or use the Editor_SetStatusW inline function.
EE_SET_STATUSW
wParam = (WPARAM) (UINT) nFlags;
lParam = (LPARAM) (LPCWSTR) szStatus;
Parameters¶
szStatus
Specifies a message text to be displayed on the status bar.
nFlags
Specifies a combination of the following values.
Value | Meaning |
---|---|
STATUS_FLAG_NONE | Displays a message in a normal color. |
STATUS_FLAG_MESSAGE | Displays a message in the default highlight color. |
STATUS_FLAG_WARNING | Displays a message in yellow . |
STATUS_FLAG_ERROR | Displays a message in red. |
STATUS_FLAG_ERASE_SHORTLY | Displays a message in a few weconds, and then erases it. |
Return Values¶
The return value is not used.