CListBox::GetItemRect
Rozměry obdélníku načte položky hranice seznamu je aktuálně zobrazené v okně pole seznamu.
int GetItemRect(
int nIndex,
LPRECT lpRect
) const;
Parametry
nIndex
Určuje z nuly vycházející index položky.lpRect
Určuje dlouhé ukazatel RECT struktury, která obdrží klient souřadnice pole seznamu zboží.
Vrácená hodnota
LB_ERR dojde k chybě.
Příklad
// Dump all of the items bounds.
CString str;
RECT r;
for (int i = 0; i < m_myListBox.GetCount(); i++)
{
m_myListBox.GetItemRect(i, &r);
str.Format(_T("item %d: left = %d, top = %d, right = %d, ")
_T("bottom = %d\r\n"),
i,
r.left,
r.top,
r.right,
r.bottom);
AFXDUMP(str);
}
Požadavky
Záhlaví: afxwin.h