CToolTipCtrl::GetCurrentTool
检索信息,如大小、位置和文本当前工具提示控件公开的,工具提示窗口。
BOOL GetCurrentTool(
LPTOOLINFO lpToolInfo
) const;
参数
Parameter |
说明 |
---|---|
[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 );
}