This documentation is for the old version. Go to the latest Graphics Mill docs

Font.Descent Property

Returns descent of the current font.

Namespace: Aurigma.GraphicsMill.Drawing
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public ReadOnly Property Descent As Single
C#
public float Descent { get; }

Property Value

Font descent.

Remarks

Descent is a maximum distance characters in this font extend below the base line.

Examples

Visual Basic
Dim font As New Aurigma.GraphicsMill.Drawing.Font("Arial", 12)

Console.WriteLine(font.Descent)
C#
Aurigma.GraphicsMill.Drawing.Font font =
    new Aurigma.GraphicsMill.Drawing.Font("Arial", 12);

Console.WriteLine(font.Descent);

See Also

Reference