Partilhar via


CFontDialog::IsBold

Chamar essa função para determinar se a fonte é selecionada em negrito.

BOOL IsBold( ) const;

Valor de retorno

Diferente de zero se a fonte selecionada tem a característica em negrito; ativada se não 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 de CFontDialog

Gráfico de hierarquia

CFontDialog::GetCurrentFont