共用方式為


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);

需求

Header: afxwin.h

請參閱

參考

CListBox 類別

階層架構圖表

LB_GETITEMHEIGHT

CListBox::SetItemHeight