interface XScriptListener in module com::sun::star::script::

(Global Index)

Syntax

interface XScriptListener : com::sun::star::lang::XEventListener ;

Description

makes it possible to receive ScriptEvent s.

Method Summary

firing gets called when an event takes place. For that a ScriptEventDescriptor is registered at and attached to an object by an XEventAttacherManager .

approveFiring gets called when a "vetoable event" occurs at the object.

Method Details



firing

Syntax

void firing (
com::sun::star::script::ScriptEvent aEvent );

Description

gets called when an event takes place. For that a ScriptEventDescriptor is registered at and attached to an object by an XEventAttacherManager .


approveFiring

Syntax

any approveFiring (
com::sun::star::script::ScriptEvent aEvent )
raises ( com::sun::star::reflection::InvocationTargetException );

Description

gets called when a "vetoable event" occurs at the object.

Top of Page