<PackageReference Include="System.Drawing.Common" Version="11.0.0-preview.2.26159.112" />

System.Drawing.Printing.PageSettings

public class PageSettings : ICloneable
Specifies settings that apply to a single, printed page.
namespace System.Drawing.Printing { public class PageSettings : ICloneable { public Rectangle Bounds { get; } public bool Color { get; set; } public float HardMarginX { get; } public float HardMarginY { get; } public bool Landscape { get; set; } public Margins Margins { get; set; } public PaperSize PaperSize { get; set; } public PaperSource PaperSource { get; set; } public RectangleF PrintableArea { get; } public PrinterResolution PrinterResolution { get; set; } public PrinterSettings PrinterSettings { get; set; } public PageSettings(); public PageSettings(PrinterSettings printerSettings); public object Clone(); public void CopyToHdevmode(IntPtr hdevmode); public void SetHdevmode(IntPtr hdevmode); } }