|
|
|
|
|
DocSave (Function) In french: DocSauve Saves a document as a "docx" file. The saved document remains open. To close it, you must use DocClose. // Choose the directory and the backup name sFileName is string = fSelect(CompleteDir(fExeDir()),"presentation.docx", ... "Selecting DocX files","Docx file (*.docx)" + TAB + "*.docx" , "*.docx", fselCreate) // Save the file DocSave(WP_NoName1, sFileName) IF ErrorOccurred THEN Error(StringBuild("The %1 file was not saved.", sFileName), ErrorInfo()) RETURN END Syntax
<Result> = DocSave(<Document> [, <File path>])
<Result>: Boolean - True if the backup was performed,
- False otherwise.
<Document>: Character string Document to use. This document can correspond to: <File path>: Optional character string Full path and name of "docx" file.
If this parameter is specified, the file is saved at the specified location (the existing file is overwritten if necessary). - If the file is saved successfully, the FilePath property of the Document variable used contains <File path>. The "docx" file remains opened.
- IF the "docx" document is saved with a path that differs from the initial one (corresponds to "Save as"), the source file is closed, the document is saved in the new file and the new "docx" file remains opened.
If this parameter is not specified, the path specified in the FilePath property of the Document variable will be used. Business / UI classification: UI Code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|