CMFCToolBar::GetItemRect
會傳回按鈕的週框 (Bounding Rectangle) 中指定之索引處。
virtual void GetItemRect(
int nIndex,
LPRECT lpRect
) const;
參數
[in] nIndex
指定工具列按鈕的索引。[out] lpRect
out 接收影像週框的座標的 CRect 物件的指標。
備註
lpRect 點的 CRect 物件設定為 0,如果位於指定索引處的按鈕不存在。
範例
下列範例示範如何使用 CMFCToolBar 類別的 GetItemRect 方法。 這個程式碼片段是 IE 示範範例的一部分。
CMFCToolBar m_wndToolBar;
...
CRect rectToolBar;
m_wndToolBar.GetItemRect(0, &rectToolBar);
需求
標題: afxtoolbar.h