Get Started
Plugins
Macros
More information

GetVersion

GetVersion() → { string }

Returns the editor version.

Parameters:

This method doesn't have any parameters.

Returns:

Type
string

Example

Copy code
window.Asc.plugin.executeMethod ("GetVersion", [], function(version) {
    if (version === undefined) {
        window.Asc.plugin.executeMethod ("PasteText", [ifr.contentDocument.getElementById ("google_translate_element").outerText]);
    }
    else {
        window.Asc.plugin.executeMethod ("GetSelectionType", [], function(sType) {
            switch (sType) {
                case "none":
                case "drawing":
                    window.Asc.plugin.executeMethod("PasteText", [ifr.contentDocument.getElementById("google_translate_element").outerText]);
                    break;
                case "text":
                    window.Asc.plugin.callCommand(function() {
                        Api.ReplaceTextSmart(Asc.scope.arr);
                    });
                    break;
            }
        });
    }
});