:: com :: sun :: star :: script ::

interface XEventAttacher2
Base Interfaces
XEventAttacher2XEventAttacher

XEventAttacher
(referenced interface's summary:)
makes it possible to attach script events given by a sequence of ScriptEventDescriptor structures to a given interface.

Methods' Summary
attachMultipleEventListeners Register a multiple set of listeners listening for the same target. Besides passing multiple listeners, the behavior of this method is identical to that of attachSingleEventListener.  
Methods' Details
attachMultipleEventListeners
sequence< ::com::sun::star::lang::XEventListener >
attachMultipleEventListeners( [in] ::com::sun::star::uno::XInterface  xTarget,
[in] sequence< EventListener >  aListeners )
raises( ::com::sun::star::lang::IllegalArgumentException,
::com::sun::star::beans::IntrospectionException,
CannotCreateAdapterException,
::com::sun::star::lang::ServiceNotRegisteredException );

Description
Register a multiple set of listeners listening for the same target. Besides passing multiple listeners, the behavior of this method is identical to that of attachSingleEventListener.
See also
XEventAttacher::attachSingleEventListener
Top of Page