次の方法で共有


CListBox::GetItemHeight

リスト ボックスの項目の高さが決まります。

int GetItemHeight(
   int nIndex 
) const;

パラメーター

  • nIndex
    リスト ボックスの項目のインデックスを指定します。このパラメーターは、リスト ボックスに LBS_OWNERDRAWVARIABLE のスタイルがある場合にだけ使用されています; それ以外の場合は 0 に設定されている必要があります。

戻り値

高さ、リスト ボックスの項目の幅 (ピクセル単位)。リスト ボックスに LBS_OWNERDRAWVARIABLE のスタイルがの場合、戻り値は nIndexで指定された項目の高さです。エラーが発生した場合、戻り値は LB_ERRです。

使用例

// Set the height of every item so the item
// is completely visible.
CString str;
CSize   sz;
CDC*    pDC = m_myListBox.GetDC();
for (int i=0;i < m_myListBox.GetCount();i++)
{
   m_myListBox.GetText( i, str );
   sz = pDC->GetTextExtent(str);

   // Only want to set the item height if the current height
   // is not big enough.
   if (m_myListBox.GetItemHeight(i) < sz.cy)
      m_myListBox.SetItemHeight( i, sz.cy );
}
m_myListBox.ReleaseDC(pDC);

必要条件

ヘッダー: afxwin.h

参照

関連項目

CListBox クラス

階層図

LB_GETITEMHEIGHT

CListBox::SetItemHeight