Share via


TreeView_HitTest

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

This macro determines the location of the specified point relative to the client area of a tree-view control. You can use this macro or send the TVM_HITTEST message explicitly.

Syntax

HTREEITEM TreeView_HitTest( 
    hwnd, 
    lpht 
);

Parameters

  • hwnd
    Handle to the tree view control.
  • lpht
    Long pointer to a TVHITTESTINFO structure. When the message is sent, the pt member specifies the coordinates of the point to test. When the message returns, the hItem member is the handle to the item at the specified point or NULL if no item occupies the point. Also, when the message returns, the flags member is a hit test value that indicates the location of the specified point. For a list of hit test values, see the description of the TVHITTESTINFO structure.

Return Value

The handle to the tree view item that occupies the specified point indicates success. NULL indicates that no item occupies the point.

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

TVM_HITTEST
TVHITTESTINFO