次の方法で共有


CListBox::GetItemRect

リスト ボックスのペインに表示されると、リスト ボックス内の項目の外接する四角形の大きさを取得します。

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

参照

関連項目

CListBox クラス

階層図

LB_GETITEMRECT