onContextMenuShow

onContextMenuShow

Функция, вызываемая, когда контекстное меню было показано.

Параметры:
Пример:

window.Asc.plugin.attachEvent('onContextMenuShow', function(options) {
	if (!options) return;

	if (options.type === 'Selection' || options.type === 'Target')
		this.executeMethod('AddContextMenuItem', [getContextMenuItems()]);
});