Partilhar via


CReBarCtrl::GetRowHeight

Implementa o comportamento de mensagem RB_GETROWHEIGHTWin32, como descrito em Windows SDK.

UINT GetRowHeight(
   UINT uRow 
) const;

Parâmetros

  • uRow
    Índice com base zero de faixa que terá sua altura recuperada.

Valor de retorno

Um valor de UINT que representa a altura da linha, em pixels.

Exemplo

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

Requisitos

Cabeçalho: afxcmn.h

Consulte também

Referência

Classe de CReBarCtrl

Gráfico de hierarquia

CReBarCtrl::GetRowCount