CTime::GetDay
Retorna representam o dia, a CTime objeto.
int GetDay( ) const throw( );
Valor de retorno
Retorna o dia do mês, com base no horário local, no intervalo de 1 a 31.
Comentários
Essa função chama GetLocalTm, que utiliza um buffer interno, alocado estaticamente. Os dados nesse buffer são substituídos por causa das chamadas para outros CTime funções de membro.
Exemplo
// Example for CTime::GetDay, CTime::GetMonth, and CTime::GetYear
CTime t(1999, 3, 19, 22, 15, 0); // 10:15 PM March 19, 1999
ATLASSERT(t.GetDay() == 19);
ATLASSERT(t.GetMonth() == 3);
ATLASSERT(t.GetYear() == 1999);
Requisitos
Cabeçalho: atltime.h