CControlBar::SetBorders

调用此函数设置控件条的边框的大小。

void SetBorders(
   int cxLeft = 0,
   int cyTop = 0,
   int cxRight = 0,
   int cyBottom = 0 
);
void SetBorders(
   LPCRECT lpRect 
);

参数

  • cxLeft
    宽度(以像素为单位)的控件条的左边框。

  • cyTop
    高度(以像素为单位)控制条上边框。

  • cxRight
    宽度(以像素为单位)的控件条的右边框。

  • cyBottom
    高度(以像素为单位)控件条的底边框。

  • lpRect
    对包含当前宽度的 CRect 对象的指针(以像素为单位)的控制条对象的每个边框。

示例

下面的代码示例设置控件条的顶部和底部边界为5像素、左右边框为2像素:

CControlBar& m_myControlBar = m_Rebar;
m_myControlBar.SetBorders(2, 5, 2, 5);

要求

Header: afxext.h

请参见

参考

CControlBar选件类

层次结构图

CControlBar::GetBorders