createSaveOptions method

createSaveOptions(saveFormat)

Creates a save options object of a class suitable for the specified save format.

createSaveOptions(saveFormat: Aspose.Words.SaveFormat)
ParameterTypeDescription
saveFormatSaveFormatThe save format for which to create a save options object.

Returns

An object of a class that derives from SaveOptions.

createSaveOptions(fileName)

Creates a save options object of a class suitable for the file extension specified in the given file name.

createSaveOptions(fileName: string)
ParameterTypeDescription
fileNamestringThe extension of this file name determines the class of the save options object to create.

Returns

An object of a class that derives from SaveOptions.

Examples

Shows an option to optimize memory consumption when rendering large documents to PDF.

let doc = new aw.Document(base.myDir + "Rendering.docx");

// Create a "PdfSaveOptions" object that we can pass to the document's "Save" method
// to modify how that method converts the document to .PDF.
let saveOptions = aw.Saving.SaveOptions.createSaveOptions(aw.SaveFormat.Pdf);

// Set the "MemoryOptimization" property to "true" to lower the memory footprint of large documents' saving operations
// at the cost of increasing the duration of the operation.
// Set the "MemoryOptimization" property to "false" to save the document as a PDF normally.
saveOptions.memoryOptimization = memoryOptimization;

doc.save(base.artifactsDir + "PdfSaveOptions.memoryOptimization.pdf", saveOptions);

See Also