LV_FINDINFO

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This structure contains information used to search for a list-view item. This structure is identical to the LVFINDINFO structure, but was renamed to fit standard naming conventions.

Syntax

typedef struct _LV_FINDINFO {
  UINT flags; 
  LPCSTR psz; 
  LPARAM lParam; 
  POINT pt; 
  UINT vkDirection; 
} LV_FINDINFO;

Members

  • flags
    Type of search to perform. It can be one or more of the following values.

    Value Description

    LVFI_PARAM

    Searches based on the lParam member. The lParam member of the matching item's LVITEM structure must match the lParam member of this structure. If this value is specified, all other values are ignored.

    LVFI_PARTIAL

    Checks to see if the item text begins with the string pointed to by the psz member. This value implies use of LVFI_STRING.

    LVFI_STRING

    Searches based on the item text. Unless additional values are specified, the item text of the matching item must exactly match the string pointed to by the psz member.

    LVFI_WRAP

    Continues the search at the beginning if no match is found.

    LVFI_NEARESTXY

    Finds the item nearest to the position specified in the pt member, in the direction specified by the vkDirection member.

  • psz
    Pointer to a null-terminated string to compare with the item text if flags specify LVFI_STRING or LVFI_PARTIAL.
  • lParam
    Value to compare with the lParam member of a list-view item's LVITEM structure if the flags member specifies LVFI_PARAM.
  • pt
    POINT structure that specifies the starting position to search from. This member is used only if LVFI_NEARESTXY is specified in the flags member.
  • vkDirection
    Direction to search. This member contains the virtual key code of an arrow key that corresponds to the direction to search. This member is used only if LVFI_NEARESTXY is specified in the flags member.

Requirements

Header commctrl.h
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also

Reference

LVM_FINDITEM
LVITEM
POINT
List-View Controls Structures