PdfSaveOptions Constructor

Initializes a new instance of this class that can be used to save a document in the Pdf format.

Namespace:  Aspose.Words.Saving
Assembly:  Aspose.Words (in Aspose.Words.dll) Version: 20.3
Syntax
public PdfSaveOptions()
Examples
Demonstrates how to set Aspose.Words to embed full fonts in the output PDF document.
// Load the document to render
Document doc = new Document(MyDir + "Rendering.docx");

// Aspose.Words embeds full fonts by default when EmbedFullFonts is set to true
// The property below can be changed each time a document is rendered
PdfSaveOptions options = new PdfSaveOptions();
options.EmbedFullFonts = true;

// The output PDF will be embedded with all fonts found in the document
doc.Save(ArtifactsDir + "Rendering.EmbedFullFonts.pdf");
See Also