AngleSharp by Florian Rappl

<PackageReference Include="AngleSharp" Version="0.9.1" />

 Point

public struct Point
Represents a point value consisting of two distances.
public static readonly Point Center

Gets the (50%, 50%) point.

public static readonly Point LeftBottom

Gets the (0, 100%) point.

public static readonly Point LeftTop

Gets the (0, 0) point.

public static readonly Point RightBottom

Gets the (100%, 100%) point.

public static readonly Point RightTop

Gets the (100%, 0) point.

public Length X { get; }

Gets the value for the x-coordinate.

public Length Y { get; }

Gets the value for the y-coordinate.

public Point(Length x, Length y)

Creates a new Point.