createWindow
Creates an input helper window.
Syntax
expression.createWindow();
expression
- A variable that represents a InputHelper class.
Parameters
This method doesn't have any parameters.
Returns
This method doesn't return any data.
Example
window.Asc.plugin.init = function(text) {
if (!window.isInit) {
window.isInit = true;
window.Asc.plugin.currentText = "";
window.Asc.plugin.createInputHelper();
window.Asc.plugin.getInputHelper().createWindow();
}
};