CListBox::GetItemRect
현재 목록 상자 창에 표시 된 대로 사각형의 크기 범위 목록 상자 항목을 검색 합니다.
int GetItemRect(
int nIndex,
LPRECT lpRect
) const;
매개 변수
nIndex
항목의 인덱스를 지정합니다.lpRect
긴 포인터를 지정 된 RECT 항목의 목록 상자 클라이언트 좌표를 수신 하는 구조.
반환 값
LB_ERR 오류가 발생 합니다.
예제
// 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);
}
요구 사항
헤더: afxwin.h