CReBarCtrl::GetRowHeight

Implementa il comportamento di messaggi Win32 RB_GETROWHEIGHT, come descritto in Windows SDK.

UINT GetRowHeight(
   UINT uRow 
) const;

Parametri

  • uRow
    Indice a base zero della banda che sarà l'altezza recuperata.

Valore restituito

Un valore uint che rappresenta l'altezza della riga, in pixel.

Esempio

int nCount = m_wndReBar.GetReBarCtrl().GetRowCount();
for (int i = 0; i < nCount; i++)
{
   UINT nHeight = m_wndReBar.GetReBarCtrl().GetRowHeight(i);
   CString msg;
   msg.Format(_T("Height of row %d is %u"), i, nHeight);
   AfxMessageBox(msg);
}   

Requisiti

Header: afxcmn.h

Vedere anche

Riferimenti

Classe di CReBarCtrl

Grafico della gerarchia

CReBarCtrl::GetRowCount