AnnSetFontBold example for C++ Builder

void TForm1::TestAnnFontBold ( HANNOBJECT hAnnObject )
{
   bool IsBold; /* Is the object’s text bold */

   /* Set the font to bold, unless it already is */
   LEADAnn1->AnnGetFontBold ( hAnnObject, IsBold );
   if ( IsBold )
       ShowMessage ( "Already bold" );
   else
       LEADAnn1->AnnSetFontBold ( hAnnObject, true, false );
}