this works for me quite well...
Code:
fontspec = subtitlefont->FontSpecInTwips();
TCharFormat subtitlecharFormat( fontspec.iTypeface.iName, fontspec.iHeight );
TCharFormatMask subtitlecharFormatMask;
subtitlecharFormatMask.SetAll();
subtitlecharFormatMask.SetAttrib(EAttFontUnderline); // set underline
subtitlecharFormat.iFontPresentation.iUnderline=EUnderlineOn;
subtitlecharFormatMask.SetAttrib(EAttColor); // set color
subtitlecharFormat.iFontPresentation.iTextColor = KRgbHelpTextColorSubTitle;
please look at subtitlecharFormatMask.SetAll(); line...