Partilhar via


CFontDialog::IsBold

telefonar Esta função para determinar se a fonte selecionada está em negrito.

BOOL IsBold( ) const;

Valor de retorno

Diferente de zero se a fonte selecionada tiver a característica negrito ativada; caso contrário, 0.

Exemplo

// Is the selected font bold?
CFontDialog dlg;
if (dlg.DoModal() == IDOK)
{
   BOOL bold = dlg.IsBold();
   TRACE(_T("Is the selected font bold? %d\n"), bold);
}

Requisitos

Cabeçalho: afxdlgs.h

Consulte também

Referência

Classe CFontDialog

Gráfico de hierarquia

CFontDialog::GetCurrentFont

Outros recursos

CFontDialog membros