TVSORTCB

This structure contains information used to sort child items in a tree view control.

typedef struct _TVSORTCB { 
HTREEITEM hParent; 
PFNTVCOMPARE lpfnCompare; 
LPARAM lParam; } 
TVSORTCB, FAR *LPTVSORTCB; 

Members

  • hParent
    Handle to the parent item.

  • lpfnCompare
    Long pointer to an application-defined callback function, which is called during a sort operation each time the relative order of two list items needs to be compared. The callback function has the following form:

    int CALLBACK CompareFunc(LPARAM lParam1, LPARAM lParam2,
     LPARAM lParamSort); 
    

    The callback function must return a negative value if the first item should precede the second, a positive value if the first item should follow the second, or zero if the two items are equivalent.

    The lParam1 and lParam2 parameters of the callback function correspond to the lParam member of the TV_ITEM structure for the two items being compared. The lParamSort member corresponds to the lParam member of TV_SORTCB.

  • lParam
    Application-defined 32-bit value that gets passed as the lParamSort parameter in the callback function specified in lpfnCompare.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 2.0 and later Commctrl.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

TVM_SORTCHILDRENCB

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.