共用方式為


CToolTipCtrl::GetCurrentTool

擷取資訊,例如大小、位置和文字目前工具提示控制項,顯示的工具提示視窗。

BOOL GetCurrentTool(
     LPTOOLINFO lpToolInfo
) const;

參數

參數

描述

[out] lpToolInfo

會取得目前工具提示視窗的相關資訊的 TOOLINFO 結構的指標。

傳回值

true ,如果訊息成功擷取;否則, false.

備註

這個方法會將 TTM_GETCURRENTTOOL 資訊,在 Windows SDK說明。

需求

標題: afxcmn.h

範例

下列程式碼範例會擷取目前工具提示視窗的資訊。

    {
        //Get information about the current tooltip. 
        TOOLINFO tInfo = {0};
        tInfo.cbSize = sizeof(TOOLINFO);
        CToolBarCtrl& m_toolBarCtrl = m_wndToolBar.GetToolBarCtrl();
        CToolTipCtrl* m_toolTip = m_toolBarCtrl.GetToolTips();
        BOOL bRet = m_toolTip->GetCurrentTool( &tInfo );
    }

請參閱

參考

CToolTipCtrl 類別

階層架構圖

TTM_GETCURRENTTOOL

TOOLINFO