Returns em height of the font (also known as em square or em size).
Namespace:
Aurigma.GraphicsMill.Drawing
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Public ReadOnly Property EmHeight As Single
public float EmHeight { get; }
Typically this size is divisible to 1024 (usually 1024 or 2048).
Dim font As New Aurigma.GraphicsMill.Drawing.Font("Arial", 12) Console.WriteLine(font.EmHeight)
Aurigma.GraphicsMill.Drawing.Font font = new Aurigma.GraphicsMill.Drawing.Font("Arial", 12); Console.WriteLine(font.EmHeight);