Creates new Font class instance. Here you can specify font typeface name, its size, and if font should be bold and/or italic.
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public Sub New ( _ familyName As String, _ size As Single, _ bold As Boolean, _ italic As Boolean, _ unitConverter As UnitConverterObject _ )
public Font( string familyName, float size, bool bold, bool italic, UnitConverterObject unitConverter )
Type: System.String
Font typeface name. You can change this value later through property Name.Type: System.Single
Font size. You can change this value later through property Size.Type: System.Boolean
Value specifying if font should be bold. You can change this value later through property Bold.Type: System.Boolean
Value specifying if font should be italic. You can change this value later through property Italic.Type: Aurigma.GraphicsMill.UnitConverterObject
A UnitConverterObject descendant class which is used to grab resolution (DPI) and unit.