CWnd::CancelToolTips
Volání funkce tohoto člena odebrat tip nástroje z obrazovky, pokud je aktuálně zobrazen tip nástroje.
static void PASCAL CancelToolTips(
BOOL bKeys = FALSE
);
Parametry
- bKeys
TRUE zrušit tipy stisknutí klávesy a nastavit text stavového řádku výchozí; jinak FALSE.
Poznámky
[!POZNÁMKA]
Použití této funkce člen nemá žádný vliv na tipy nástrojů, které jsou spravovány v kódu.Ovlivňuje pouze kontrolu tip nástroje spravované CWnd::EnableToolTips.
Příklad
// In this example, tool tips were set up to
// pop up when the user moves the mouse
// over this edit control.
// If the mouse is moved to the upper left-hand
// corner, the tool tip would disappear because of
// calling CancelToolTips.
void CMyEdit::OnMouseMove(UINT nFlags, CPoint point)
{
CRect corner(0, 0, 10, 10);
if (corner.PtInRect(point))
CancelToolTips();
CEdit::OnMouseMove(nFlags, point);
}
Požadavky
Záhlaví: afxwin.h