PdfSaveOptionsZoomBehavior Property |
Namespace: Aspose.Words.Saving
// Open a document with multiple paragraphs Document doc = new Document(MyDir + "Rendering.docx"); PdfSaveOptions options = new PdfSaveOptions(); options.ZoomBehavior = PdfZoomBehavior.ZoomFactor; options.ZoomFactor = 25; options.PageMode = PdfPageMode.UseThumbs; // When opening the .pdf with a viewer such as Adobe Acrobat Pro, the zoom level will be at 25% by default, // with thumbnails for each page to the left doc.Save(ArtifactsDir + "PdfSaveOptions.ZoomBehaviour.pdf", options);