CMonthCalCtrl::SetRange

 

Sets the minimum and maximum allowable dates for a month calendar control.

Syntax

      BOOL SetRange(
   const COleDateTime* pMinRange,
   const COleDateTime* pMaxRange 
);
BOOL SetRange(
   const CTime* pMinRange,
   const CTime* pMaxRange 
);
BOOL SetRange(
   const LPSYSTEMTIME pMinRange,
   const LPSYSTEMTIME pMaxRange 
);

Parameters

  • pMinRange
    A pointer to a COleDateTime object, a CTime object, or SYSTEMTIME structure containing the date at the lowest end of the range.

  • pMaxRange
    A pointer to a COleDateTime object, a CTime object, or SYSTEMTIME structure containing the date at the highest end of the range.

Return Value

Nonzero if successful; otherwise 0.

Remarks

This member function implements the behavior of the Win32 message MCM_SETRANGE, as described in the Windows SDK. In MFC's implementation of SetRange, you can specify COleDateTime usage, a CTime usage, or a SYSTEMTIME structure usage.

Example

See the example for CMonthCalCtrl::GetRange.

Requirements

Header: afxdtctl.h

See Also

CMonthCalCtrl Class
Hierarchy Chart
CMonthCalCtrl::GetRange