[C#]
Font(string familyName, double emSize);
Font(string familyName, double emSize, FontStyle style);
Font(string familyName, double emSize, FontStyle style, GraphicsUnit unit);
Font(string familyName, double emSize, GraphicsUnit unit);
Font(Font prototype, FontStyle newStyle);
Font(FontFamily family, double emSize);
Font(FontFamily family, double emSize, FontStyle style);
Font(FontFamily family, double emSize, FontStyle style, GraphicsUnit unit);
Font(FontFamily family, double emSize, GraphicsUnit unit);
[Visual Basic]
Sub New(familyName As String, emSize As Double)
Sub New(familyName As String, emSize As Double, style As FontStyle)
Sub New(familyName As String, emSize As Double, style As FontStyle, unit As GraphicsUnit)
Sub New(familyName As String, emSize As Double, unit As GraphicsUnit)
Sub New(prototype As Font, newStyle As FontStyle)
Sub New(family As FontFamily, emSize As Double)
Sub New(family As FontFamily, emSize As Double, style As FontStyle)
Sub New(family As FontFamily, emSize As Double, style As FontStyle, unit As GraphicsUnit)
Sub New(family As FontFamily, emSize As Double, unit As GraphicsUnit)
|