CFontDialog::GetColor

Chamar essa função para recuperar a cor da fonte selecionada.

COLORREF GetColor( ) const;

Valor de retorno

A cor da fonte selecionada.

Exemplo

// Get the color of the selected font, if any.
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
   COLORREF color = dlg.GetColor();
   TRACE(_T("Color of the selected font = %8x\n"), color);
}

Requisitos

Cabeçalho: afxdlgs.h

Consulte também

Referência

Classe de CFontDialog

Gráfico de hierarquia

CFontDialog::GetCurrentFont