Sets the color of the insertion point.
To send this message, call the SendMessage function as follows.
lResult = SendMessage( // returns BOOL in lResult (HWND) hWndControl, // handle to destination control (UINT) LVM_SETINSERTMARKCOLOR, // message ID (WPARAM) wParam, // = 0; not used; must be zero (LPARAM) lParam // = (LPARAM) (COLORREF) color );
Parameters
- wParam
- [in] Must be zero.
- color
- [in] COLORREF structure that specifies the color to set the insertion point.
Return Value
Returns TRUE if successful, or FALSE otherwise.
Message Requirements
Header commctrl.h Minimum operating systems Windows NT Whistler