The function called when the user is trying to input the text and the input helper appears.
Name | Type | Description |
data | object | Defines the text which the user inputs:
|
window.Asc.plugin.event_onInputHelperInput = function(data) { if (data.add) window.Asc.plugin.currentText += data.text; else window.Asc.plugin.currentText = data.text; ... }