window.Asc.plugin.executeMethod ("ShowInputHelper", [args], callback)
Defines the method that allows showing the input helper.
This method should be used in the following way:
window.Asc.plugin.executeMethod ("ShowInputHelper", [guid, w, h, isKeyboardTake]);
Parameter |
Description |
Type |
Example |
guid |
A string value which specifies a plugin identifier which must be of the asc.{UUID} type. |
string |
"asc.{UUID}" |
w |
A number which specifies the window width measured in millimeters. |
string |
70 |
h |
A number which specifies the window height measured in millimeters. |
string |
70 |
isKeyboardTake |
Defines if the keyboard is caught (true) or not (false). |
boolean |
true |
The method returns the undefined value.
window.Asc.plugin.executeMethod("ShowInputHelper", ["asc.{UUID}", 70, 70, true]);