<PackageReference Include="System.Drawing.Common" Version="10.0.4" />

System.Drawing.Printing.Margins

public class Margins : ICloneable
Specifies the dimensions of the margins of a printed page.
namespace System.Drawing.Printing { public class Margins : ICloneable { public int Left { get; set; } public int Right { get; set; } public int Top { get; set; } public int Bottom { get; set; } public Margins(); public Margins(int left, int right, int top, int bottom); public object Clone(); public static bool operator ==(Margins m1, Margins m2); public static bool operator !=(Margins m1, Margins m2); } }