다음을 통해 공유


CMonthCalCtrl::GetToday

Month calendar 컨트롤의 "오늘"로 지정 된 날짜의 날짜 정보를 검색 합니다.

BOOL GetToday( 
   COleDateTime& refDateTime  
) const; 
BOOL GetToday( 
   COleDateTime& refDateTime  
) const; 
BOOL GetToday( 
   LPSYSTEMTIME pDateTime  
) const;

매개 변수

  • refDateTime
    참조 하는 COleDateTime 또는 CTime 현재 날짜를 나타내는 개체입니다.

  • pDateTime
    에 대 한 포인터는 SYSTEMTIME 날짜 정보를 받을 수 있는 구조입니다. 이 매개 변수는 유효한 주소 이어야 하며 수 없습니다 NULL.

반환 값

성공 하면 0이 아닌. 그렇지 않으면 0입니다.

설명

이 멤버 함수는 Win32 메시지의 동작을 구현 MCM_GETTODAY에 설명 된 대로, 여 Windows SDK. MFC의 구현에 GetToday, 지정할 수 있습니다는 COleDateTime 사용은 CTime 사용 또는 SYSTEMTIME 구조를 사용 합니다.

예제

void CMonthCalDlg::OnBnClickedGettodaybutton()
{
   COleDateTime timeToday;
   if (m_calCtrl1.GetToday(timeToday))
   {
      // Format the date information from the value we received 
      // and post a message box about it.
      CString str = timeToday.Format(VAR_DATEVALUEONLY);
      AfxMessageBox(str);

      // Set the control's "today" indicator to be five
      // days previous.
      timeToday -= 5;
      m_calCtrl1.SetToday(timeToday);
   }
   else
   {
      // Something is wrong!
      ASSERT(FALSE);
   }
}

요구 사항

헤더: afxdtctl.h

참고 항목

참조

CMonthCalCtrl 클래스

계층 구조 차트

CMonthCalCtrl::SetToday