Share via


COleDateTime::GetDay

int GetDay( ) const;

Return Value

The day of the month represented by the value of this COleDateTime object.

Remarks

Call this member function to get the day of the month represented by this date/time value.

Valid return values range between 1 and 31. If the status of this COleDateTime object is not valid, the return value is AFX_OLE_DATETIME_ERROR.

For information on other member functions that query the value of this COleDateTime object, see the following member functions:

Example

COleDateTime t(1999, 3, 19, 22, 15, 0);  // 10:15PM March 19, 1999
ASSERT(t.GetDay() == 19);
ASSERT(t.GetMonth() == 3);
ASSERT(t.GetYear() == 1999);

COleDateTime OverviewClass MembersHierarchy Chart

See Also   COleDateTime::COleDateTime, COleDateTime::SetDateTime, COleDateTime::operator =, COleDateTime::GetStatus