FontStyle Enumeration
.NET Framework (current version)
Specifies style information applied to text.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Assembly: System.Drawing (in System.Drawing.dll)
| Member name | Description | |
|---|---|---|
| Bold | Bold text. | |
| Italic | Italic text. | |
| Regular | Normal text. | |
| Strikeout | Text with a line through the middle. | |
| Underline | Underlined text. |
The following code example demonstrates how to set the Font property of a button to a new bold-style font using the FontStyle enumeration. This example is designed to be used with Windows Forms. Create a form containing a button named Button1 and paste the following code into it. Associate the Button1_Click method with the button's Click event.
.NET Framework
Available since 1.1
Available since 1.1
Show: