CListBox::SetItemHeight
Visual Studio 2012
Sets the height of items in a list box.
int SetItemHeight( int nIndex, UINT cyItemHeight );
If the list box has the LBS_OWNERDRAWVARIABLE style, this function sets the height of the item specified by nIndex. Otherwise, this function sets the height of all items in the list box.
// Set the height of every item to be the // vertical size of the item's text extent. CString str; CSize sz; CDC* pDC = myListBox.GetDC(); for (int i = 0; i < myListBox.GetCount(); i++) { myListBox.GetText(i, str); sz = pDC->GetTextExtent(str); myListBox.SetItemHeight(i, sz.cy); } myListBox.ReleaseDC(pDC);