CReBar::GetReBarCtrl
此成员函数允许直接访问基础公共控件。
CReBarCtrl& GetReBarCtrl( ) const;
返回值
为 CReBarCtrl 对象的引用。
备注
调用该成员函数利用Windows rebar公共控件的功能在自定义您的rebar的。 当您调用 GetReBarCtrl时,它将返回到 CReBarCtrl 对象的引用对象,因此您可以使用其中之一组成员函数。
有关使用 CReBarCtrl 的更多信息自定义您的rebar,请参见 使用CReBarCtrl。
示例
CReBarCtrl& refReBarCtrl = m_wndReBar.GetReBarCtrl();
UINT nBandCount = refReBarCtrl.GetBandCount();
CString msg;
msg.Format(_T("Band Count is: %u"), nBandCount);
AfxMessageBox(msg);
要求
Header: afxext.h