CReBarCtrl::GetRect
Implementa il comportamento di messaggi Win32 RB_GETRECT, come descritto in Windows SDK.
BOOL GetRect(
UINT uBand,
LPRECT prc
) const;
Parametri
uBand
Indice in base zero di una banda nel controllo Rebar.prc
Un puntatore a una struttura RECT che riceverà i limiti della banda del rebar.
Valore restituito
Diverso da zero se ha esito positivo; in caso contrario zero.
Esempio
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);
Requisiti
Header: afxcmn.h