次の方法で共有


CWnd::CancelToolTips

更新 : 2007 年 11 月

画面に表示されているツール ヒントを削除するために呼び出します。

static void PASCAL CancelToolTips(
   BOOL bKeys = FALSE 
);

パラメータ

  • bKeys
    キーを押すとツール ヒントがキャンセルされステータス バー テキストに既定が設定されるようにするには TRUE を、それ以外は FALSE を設定します。

解説

1xbe578c.alert_note(ja-jp,VS.90).gifメモ :

このメンバ関数を使用しても、コードで管理されるツール ヒントに影響を与えることはありません。このメンバ関数を使用したときに影響を受けるのは、CWnd::EnableToolTips で管理されるツール ヒント コントロールだけです。

使用例

// 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);
}

必要条件

ヘッダー : afxwin.h

参照

参照

CWnd クラス

階層図

CWnd::EnableToolTips

TTM_ACTIVATE

その他の技術情報

CWnd のメンバ