LVM_GETINSERTMARKRECT Message


This is preliminary documentation and is subject to change.

Retrieves the rectangle that bounds 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_GETINSERTMARKRECT,     // message ID
   (WPARAM) wParam,     // = 0; not used; must be zero
   (LPARAM) lParam     // = (LPARAM) (LPRECT) rc
);

Parameters

wParam
[in] Not used; must be zero.
rc
[in] Pointer to a RECT structure that contains the coordinates of a rectangle that bounds the insertion point.

Return Value

Returns TRUE if there is an insertion point, or FALSE otherwise.

Message Requirements

Headercommctrl.h
Minimum operating systems Windows NT Whistler


© 2000 Microsoft Corporation. All rights reserved. Terms of use.