CListBox::GetItemRect
更新 : 2007 年 11 月
リスト ボックス ウィンドウに現在表示されているリスト ボックス項目を囲む四角形の大きさを取得します。
int GetItemRect(
int nIndex,
LPRECT lpRect
) const;
パラメータ
nIndex
項目を 0 から始まるインデックスで指定します。lpRect
リスト ボックス項目のクライアント座標を受け取る RECT 構造体への long ポインタを指定します。
戻り値
エラーが発生した場合は 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