共用方式為


CMonthCalCtrl::SetMaxSelCount

設定月曆控制項中可選取的最多天數。

BOOL SetMaxSelCount( 
   int nMax  
);

參數

  • nMax
    要設定為表示可選取日期的最大數目的值。

傳回值

如果不是零,則成功,則為 0。

備註

此成員函式實作 Win32 訊息 MCM_SETMAXSELCOUNT的行為 Windows SDK,如中所述。

範例

// The control needs to have the MCS_MULTISELECT style 
// for the following code to work. 

// change the maximum selection count
m_calCtrl2.SetMaxSelCount(10);

// check that the change was really made
ASSERT(m_calCtrl2.GetMaxSelCount() == 10);

需求

Header: afxdtctl.h

請參閱

參考

CMonthCalCtrl 類別

階層架構圖表

CMonthCalCtrl::GetMaxSelCount