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

Font.LineGap Property

Returns line gap of the current font.

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

Syntax

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

Property Value

Line gap of the current font.

Remarks

Line gap means a spacing between two lines when they are displayed one under another.

Examples

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

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

Console.WriteLine(font.LineGap);

See Also

Reference