CReBarCtrl::GetRowHeight
Implementa o comportamento do Win32 mensagem RB_GETROWHEIGHT, sistema autônomo descrito o Windows SDK.
UINT GetRowHeight(
UINT uRow
) const;
Parâmetros
- uRow
Índice baseado em zero da banda que terão sua altura recuperada.
Valor de retorno
A UINTvalor de 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