Provides various options that control how a document is saved.
For a list of all members of this type, see SaveOptions Members.
System.Object
Aspose.Words.SaveOptions
[Visual Basic]
Public Class SaveOptions
[C#]public class SaveOptions
Remarks
The SaveOptions objectis a set of options that allow you to control how Aspose.Words saves a Document. SaveOptions is not persisted with the Document.
Example
Shows how to set save options before saving a document.
[C#]
Document doc = new Document(MyDir + "Document.doc");
// Set an option to export form fields as plain text, not as HTML input elements.
doc.SaveOptions.HtmlExportTextInputFormFieldAsText = true;
doc.Save(MyDir + "Document.SaveWithOptions Out.html");
[Visual Basic]
Dim doc As Document = New Document(MyDir & "Docu