CReBarCtrl::MaximizeBand

Resizes a band in a rebar control to its largest size.

void MaximizeBand(
   UINT uBand 
);

Parameters

  • uBand
    Zero-based index of the band to be maximized.

Remarks

Implements the behavior of the Win32 message RB_MAXIMIZEBAND with fIdeal set to 0, as described in the Windows SDK.

Example

CReBarCtrl& refReBarCtrl = m_wndReBar.GetReBarCtrl();
UINT nCount = refReBarCtrl.GetBandCount();

for (UINT i = 0; i < nCount; i++)
   refReBarCtrl.MaximizeBand(i);   

Requirements

Header: afxcmn.h

See Also

Reference

CReBarCtrl Class

Hierarchy Chart

CReBarCtrl::MinimizeBand

CReBarCtrl::RestoreBand

Other Resources

CReBarCtrl Members