Compartilhar via


CMonthCalCtrl::SetDayState

Define a exibição de dias em um controle de calendário do mês.

BOOL SetDayState(
   int nMonths,
   LPMONTHDAYSTATE pStates 
);

Parâmetros

  • nMonths
    Valor que indica quantos elementos estão na matriz que pStates aponta para.

  • pStates
    Um ponteiro para um MONTHDAYSTATE matriz de valores que definem como o controle de calendário mensal desenhará a cada dia em sua exibição.The MONTHDAYSTATEtipo de dados de é um campo de bits, onde cada bit (de 1 a 31) representa o estado de um dia do mês.Se um bit estiver ativada, o dia correspondente será exibido em negrito; caso contrário poderá ser exibida com nenhuma ênfase.

Valor de retorno

Diferente de zero se bem-sucedida; caso contrário, 0.

Comentários

Esta função de membro implementa o comportamento do Win32 mensagem MCM_SETDAYSTATE, sistema autônomo descrito o Windows SDK.

Exemplo

void CMonthCalDlg::OnBnClickedDaystatebutton()
{
   // First, we must find the visible range. The array we pass to the
   // SetDayState() function must be large enough to hold days for all
   // of the visible months. Even if a month is _partially_ visible,
   // we must have MONTHDAYSTATE data for it in the array we pass.
   // GetMonthRange() returns the range of days currently visible in
   // the control, along with a count of visible months. This array
   // will be up to 2 months larger than the number of "pages" visible
   // in the control.

   SYSTEMTIME timeFrom;
   SYSTEMTIME timeUntil;
   int nCount = m_calCtrl1.GetMonthRange(&timeFrom, &timeUntil, GMR_DAYSTATE);

   // Allocate the state array based on the return value.

   LPMONTHDAYSTATE pDayState;
   pDayState = new MONTHDAYSTATE[nCount];
   memset(pDayState, 0, sizeof(MONTHDAYSTATE) * nCount);

   // Find the first fully visible month.

   int nIndex = (timeFrom.wDay == 1) ? 0 : 1;

   // Set the 4th day, 19th day, and 26th day of the first
   // _fully_ visible month as bold.

   pDayState[nIndex] |= 1 << 3;   // 4th day
   pDayState[nIndex] |= 1 << 18;   // 19th day
   pDayState[nIndex] |= 1 << 25;   // 25th day

   // Set state and clean up

   VERIFY(m_calCtrl1.SetDayState(nCount, pDayState));
   delete [] pDayState;
}

Requisitos

Cabeçalho: afxdtctl.h

Consulte também

Referência

Classe CMonthCalCtrl

Gráfico de hierarquia

Outros recursos

CMonthCalCtrl membros