CMFCToolBar::GetItemRect
返回按钮的边框在指定的索引。
virtual void GetItemRect(
int nIndex,
LPRECT lpRect
) const;
参数
[in] nIndex
指定工具栏按钮的索引。[out] lpRect
用于接收图像边框的坐标的 CRect 对象的指针。
备注
lpRect 点的 CRect 对象设置为0;如果位于指定索引处的按钮不存在。
示例
下面的示例演示如何使用 CMFCToolBar 选件类的 GetItemRect 方法。 此代码段是 pocket IE演示示例的一部分。
CMFCToolBar m_wndToolBar;
...
CRect rectToolBar;
m_wndToolBar.GetItemRect(0, &rectToolBar);
要求
标头: afxtoolbar.h