Partager via


CFontDialog::IsBold

Appelez cette fonction pour déterminer si la police sélectionnée est en gras.

BOOL IsBold( ) const;

Valeur de retour

Une valeur différente de zéro si la police sélectionnée fait activer la fonctionnalité en gras ; sinon 0.

Exemple

// 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);
}

Configuration requise

Header: afxdlgs.h

Voir aussi

Référence

Classe de CFontDialog

Graphique de la hiérarchie

CFontDialog::GetCurrentFont