PdfPageEditor.Zoom

PdfPageEditor.Zoom property

Get or sets zoom coefficient. Value 1.0 corresponds to 100%. Default value is 1.0. The following example demonstrates how to change zoom of the document pages.

PdfPageEditor editor = new PdfPageEditor();
editor.BindPdf("sample.pdf");
editor.Zoom = 0.5f;
public float Zoom { get; set; }

See Also