CReBarCtrl::GetRect
實作 Win32 訊息 RB_GETRECT的行為 Windows SDK,如中所述。
BOOL GetRect(
UINT uBand,
LPRECT prc
) const;
參數
uBand
一個群組列以零起始的索引 Rebar 控制項的。prc
要接收 Rebar 群組列的繫結的 的長度 結構的指標。
傳回值
如果不是零,則成功,則為零。
範例
CRect rc;
m_wndReBar.GetReBarCtrl().GetRect(0, &rc);
CString msg;
msg.Format(_T("rect.left = %d, rect.top = %d, ")
_T("rect.right = %d, rect.bottom = %d"), rc.left,
rc.top, rc.right, rc.bottom);
AfxMessageBox(msg);
需求
Header: afxcmn.h