EditorSave Method (EditableDocument, String, ISaveOptions) |
Converts specified edited document, represented as instance of '
EditableDocument', to the resultant document of specified format and saves its content to file by specified file path
Namespace: GroupDocs.EditorAssembly: GroupDocs.Editor (in GroupDocs.Editor.dll) Version: 21.10.0.0
Syntaxpublic void Save(
EditableDocument inputDocument,
string filePath,
ISaveOptions saveOptions
)
Public Sub Save (
inputDocument As EditableDocument,
filePath As String,
saveOptions As ISaveOptions
)
public:
void Save(
EditableDocument^ inputDocument,
String^ filePath,
ISaveOptions^ saveOptions
)
member Save :
inputDocument : EditableDocument *
filePath : string *
saveOptions : ISaveOptions -> unit
Parameters
- inputDocument
- Type: GroupDocs.EditorEditableDocument
Version of the input document, that was edited in WYSIWYG HTML-editor and is stored as instance of 'EditableDocument' class, which should be converted to output document of some specific format. Must not be null or disposed. - filePath
- Type: SystemString
Path to the file, in which the output document will be saved. It file with the same name exists, it will be completely rewritten. String with path must not be null, empty or contain only whitespaces. - saveOptions
- Type: GroupDocs.Editor.OptionsISaveOptions
Document saving options, which define the format of the resultant document,
and also general and format-specific saving options. Must not be null.
Remarks
See Also