LVM_GETISEARCHSTRINGLVM_GETISEARCHSTRING*
*Contents  *Index  *Topic Contents
*Previous Topic: LVM_GETIMAGELIST
*Next Topic: LVM_GETITEM

LVM_GETISEARCHSTRING


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

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

lpsz
Address of 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.

A time-out period is associated with each character that the user types. If the time-out period elapses before the user types another character, the incremental search string is reset.


Up Top of Page
© 1997 Microsoft Corporation. All rights reserved. Terms of Use.