CFont::GetLogFont
Chamar essa função para recuperar uma cópia da estrutura de LOGFONT para CFont.
int GetLogFont(
LOGFONT * pLogFont
);
Parâmetros
- pLogFont
Ponteiro para a estrutura de LOGFONT para receber informação da fonte.
Valor de retorno
Diferente de zero se a função é bem-sucedido, se não 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