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

Bitmap.LogicalHeight Property

Returns current bitmap height in units specified with Unit property.

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

Syntax

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

Property Value

Height of the bitmap in units specified with Unit property.

Examples

Visual Basic
bitmap.Unit = Aurigma.GraphicsMill.Unit.Inch

Console.WriteLine("Bitmap: " & bitmap.LogicalWidth & " x " & bitmap.LogicalHeight)
C#
bitmap.Unit = Aurigma.GraphicsMill.Unit.Inch;

Console.WriteLine("Bitmap: " + bitmap.LogicalWidth + " x " + bitmap.LogicalHeight);

See Also

Reference