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);
}
要求
Header: afxwin.h