using System; using System.Collections.Generic; using System.Text; namespace PdfiumViewer { /// /// Specifies the mode in which the document should be printed. /// /// /// Printers have a hard margin. This is a (small) margin on which it is not /// possible to print. PdfPrintMode specifies whether the page should be /// scaled to fit into this margin, or that the margin should be cut off of /// the page. /// public enum PdfPrintMode { /// /// Shrink the print area to fall within the hard printer margin. /// ShrinkToMargin, /// /// Cut the hard printer margin from the output. /// CutMargin } }