System.Drawing.FontStyle
Specifies style information applied to text.
namespace System.Drawing
{
public enum FontStyle
{
Regular = 0,
Bold = 1,
Italic = 2,
Underline = 4,
Strikeout = 8
}
}