CReBarCtrl::SetBandInfo
實作 Win32 訊息 RB_SETBANDINFO的行為 Windows SDK,如中所述。
BOOL SetBandInfo(
UINT uBand,
REBARBANDINFO* prbbi
);
參數
uBand
接收新設定的群組列以零起始的索引。prbbi
為定義群組列要插入的 REBARBANDINFO 結構的指標。 您必須將這個結構的 cbSize 成員加入至 sizeof(REBARBANDINFO) 在傳送訊息之前。
傳回值
如果不是零,則成功,則為零。
範例
int nCount = m_wndReBar.GetReBarCtrl().GetBandCount();
CString strText;
REBARBANDINFO rbbi = {0};
rbbi.cbSize = sizeof(rbbi);
for (int i = 0; i < nCount; i++)
{
strText.Format(_T("Band #: %d"), i);
rbbi.lpText = strText.GetBuffer();
rbbi.cch = strText.GetLength() + 1;
rbbi.fMask = RBBIM_TEXT;
m_wndReBar.GetReBarCtrl().SetBandInfo(i, &rbbi);
strText.ReleaseBuffer();
}
需求
Header: afxcmn.h