CListBox::GetItemRect
Pobiera wymiary prostokąta elementu granice pole listy, ponieważ obecnie jest wyświetlany w polu listy okna.
int GetItemRect(
int nIndex,
LPRECT lpRect
) const;
Parametry
nIndex
Określa wyświetlanego elementu.lpRect
Określa wskaźnik długi RECT strukturę, która odbiera współrzędne elementu klienta pole listy.
Wartość zwracana
LB_ERR , jeśli wystąpi błąd.
Przykład
// 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);
}
Wymagania
Nagłówek: afxwin.h