跳到主要内容

getInputHelper

Defines the method used to get the {@link inputhelper InputHelper object}.

Syntax

expression.getInputHelper();

expression - A variable that represents a Plugin class.

Parameters

This method doesn't have any parameters.

Returns

InputHelper

Example

window.Asc.plugin.init = function(text) {
if (!window.isInit) {
window.isInit = true;
window.Asc.plugin.currentContentControl = null;
window.Asc.plugin.createInputHelper();
window.Asc.plugin.getInputHelper().createWindow();
}
};