System.Drawing.Printing.PageSettings
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);
}
}