CPagerCtrl::GetBorder
检索当前页导航控件的边框大小。
int GetBorder() const;
要求
标头: afxcmn.h
返回值
当前边框大小,单位是像素。
备注
此方法发送 PGM_GETBORDER 信息,在 Windows SDK所述。
示例
下面的示例使用 CPagerCtrl::GetBorder 方法检索页导航控件的边框的粗细。
void CCSplitButton_s2Dlg::OnXBorder()
{
int borderSize = m_pager.GetBorder();
CString str;
str.Format(_T("The border is %d pixel(s) thick."), borderSize);
MessageBox(str);
}