CListBox::GetItemRect
擷取週框的清單方塊項目矩形的維度,並在清單方塊中目前視窗隨即顯示。
int GetItemRect(
int nIndex,
LPRECT lpRect
) const;
參數
nIndex
指定項目之以零起始的索引。lpRect
指定長指標接收項目的清單方塊工作區座標的 的長度 結構。
傳回值
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