LVM_GETISEARCHSTRING (Windows CE 5.0)

Send Feedback

This message retrieves the incremental search string of a list-view control. You can send this message explicitly or by using the ListView_GetISearchString macro.

LVM_GETISEARCHSTRING wParam= 0;lParam= (LPARAM)(LPSTR) lpsz;

Parameters

  • wParam
    Not used.

  • lpsz
    Long pointer to a buffer that receives the incremental search string.

    The incremental search string is the character sequence that the user types while the list view has the input focus. Each time the user types a character, the system appends the character to the search string and then searches for a matching item. If the system finds a match, it selects the item and, if necessary, scrolls it into view.

Return Values

The number of characters in the incremental search string indicates success. Zero indicates that the list-view control is not in incremental search mode.

Requirements

OS Versions: Windows CE 1.0 and later.
Header: Commctrl.h.

See Also

ListView_GetISearchString | List-View Controls Messages

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.