How do you apply multiple font styles to text?
System.Drawing.Font MyFont = new System.Drawing.Font( thisTempLabel.LabelFont, ((float)thisTempLabel.f
FontStyle is a flag enum and therefore you can set multiple styles by:
FontStyle
FontStyle.Bold | FontStyle.Italic