Partilhar via


CFont::GetLogFont

Chamar esta função para recuperar uma cópia do LOGFONT estrutura para CFont.

int GetLogFont(
   LOGFONT * pLogFont 
);

Parâmetros

  • pLogFont
    Ponteiro para o LOGFONT estrutura para receber as informações de fonte.

Valor de retorno

Diferente de zero se a função obtiver êxito, caso contrário, 0.

Exemplo

// The code fragment shows how to retrieve a copy of the 
// LOGFONT structure for a currently selected font of a window.

CFont* pFont = pWnd->GetFont();
if (NULL != pFont)
{
   LOGFONT lf;
   pFont->GetLogFont(&lf);
   TRACE(_T("Typeface name of font = %s\n"), lf.lfFaceName);
}

Requisitos

Cabeçalho: afxwin.h

Consulte também

Referência

Classe CFont

Gráfico de hierarquia

LOGFONT

GetObject

Outros recursos

CFont membros