Font Constructor (FontFamily^, Single, FontStyle)
.NET Framework (current version)
Initializes a new Font using a specified size and style.
Assembly: System.Drawing (in System.Drawing.dll)
Parameters
- family
-
Type:
System.Drawing::FontFamily^
The FontFamily of the new Font.
- emSize
-
Type:
System::Single
The em-size, in points, of the new font.
- style
-
Type:
System.Drawing::FontStyle
The FontStyle of the new font.
| Exception | Condition |
|---|---|
| ArgumentException | emSize is less than or equal to 0, evaluates to infinity, or is not a valid number. |
| ArgumentNullException | family is null. |
The following code example demonstrates how to set the Font property of a button to a new, bold-style Font. This example is designed to be used with a Windows Form that contains a button named Button1. Paste the following code into your form and associate the Button1_Click method with the button's Click event.
.NET Framework
Available since 1.1
Available since 1.1
Show: