Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

This message sets the position of a tracking ToolTip.

Syntax

TTM_TRACKPOSITION 
wParam = 0;

lParam = (LPARAM)(DWORD) MAKELONG(
xPos, 
yPos);

Parameters

wParam

Not used. Set to 0.

xPos

The x-coordinate of the point at which you want to display the tracking ToolTip, in screen coordinates.

yPos

The y-coordinate of the point at which you want to display the tracking ToolTip, in screen coordinates.

Return Value

None.

Remarks

The ToolTip control determines where to display the ToolTip window based on the coordinates that you provide in this message. Windows Embedded CE interprets these coordinates relative to the tool, so that the ToolTip window appears beside the tool to which the ToolTip corresponds. To display ToolTip windows at specific absolute coordinates, include the TTF_ABSOLUTE flag in the uFlagsmember of the TOOLINFOstructure when you add the tool.

Requirements

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

See Also