CReBarCtrl::GetRowHeight

实现Win32消息 RB_GETROWHEIGHT的行为,如 Windows SDK所述。

UINT GetRowHeight(
   UINT uRow 
) const;

参数

  • uRow
    将其高度以检索带区的从零开始的索引。

返回值

表示行高的一个 UINT 值,以像素为单位。

示例

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

要求

Header: afxcmn.h

请参见

参考

CReBarCtrl选件类

层次结构图

Windows 服务应用程序