Save¶
Saves the changes on a document and returns the current document instance.
1 |
|
Remarks¶
When creating a new document with $Documents.New, it will be in the "Draft" state, until you use a method to save it. However, Document.Save( ) will save the new document in a repository, not in a specific folder (it will be in a system, but not shown anywhere). If you want to save the new document to be able to access it from a specific folder, see Document.Publish
In conclusion, this method is better when used for changes made on an already existing documents, and for saving the new documents, you should refer to the Document.Publish
Creating a new document, publishing it, making some changes and saving the changes¶
1 2 3 4 5 6 |
|