In ExplorerBarStyle RadPanelBar I am trying to set the font of RadPanelBarGroupElement(s) caption to Bold and underlined. I can't find where to set this at design time. So I am doing it at run time as follows:
RadPanelBarGroupElement1.GetCaptionElement().Font =
New Font(RadPanelBarGroupElement1.GetCaptionElement().Font.FontFamily, 14, FontStyle.Bold)
However, I can set the font style to either Bold or Underline but not both.
What is the best way to set the font?
Thanks ... DP