FontStyle
Specifies style information applied to text.
using System.Runtime.CompilerServices;
namespace System.Drawing
{
[Flags]
[TypeForwardedFrom("System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
public enum FontStyle
{
Regular = 0,
Bold = 1,
Italic = 2,
Underline = 4,
Strikeout = 8
}
}