Font Constructor (String^, Single, GraphicsUnit)

 

Initializes a new Font using a specified size and unit. The style is set to FontStyle::Regular.

Namespace:   System.Drawing
Assembly:  System.Drawing (in System.Drawing.dll)

public:
Font(
	String^ familyName,
	float emSize,
	GraphicsUnit unit
)

Parameters

familyName
Type: System::String^

A string representation of the FontFamily for the new Font.

emSize
Type: System::Single

The em-size of the new font in the units specified by the unit parameter.

unit
Type: System.Drawing::GraphicsUnit

The GraphicsUnit of the new font.

Exception Condition
ArgumentException

emSize is less than or equal to 0, evaluates to infinity, or is not a valid number.

The resulting font has its Style property set to FontStyle::Regular.

.NET Framework
Available since 1.1
Return to top
Show: