Click or drag to resize
SaveDocument Method

Save document to Web server.

Syntax

[ JavaScript ]

document.getElementById("AceoffixCtrl1").SaveDocument()

Parameters
No parameters.
Return Value
No return value.
Remarks

With this method you will not save document in your local computer but to the web server.

This is the important method of AceoffixCtrl. In general, we recommend you define a custom button and call this method to save document and data.

Note Note

If you do not want user to use save button of Office application, you can add a button to custom toolbar and call this method in Javascript to save document and data.

Example
JavaScript
document.getElementById("AceoffixCtrl1").SaveDocument();
See Also