:: com :: sun :: star :: sheet ::

interface XActivationBroadcaster
Description
provides methods to add and remove XActivationEventListener
Since
OpenOffice 2.0.0

Methods' Summary
addActivationEventListener allows a component supporting the ::com::sun::star::sheet::XActivationEventListener interface to register as listener. The component will be notified with a ::com::sun::star::sheet::ActivationEvent every time the active sheet changes.

 
removeActivationEventListener removes a previously registered listener.  
Methods' Details
addActivationEventListener
void
addActivationEventListener( [in] ::com::sun::star::sheet::XActivationEventListener  aListener );

Description
allows a component supporting the ::com::sun::star::sheet::XActivationEventListener interface to register as listener. The component will be notified with a ::com::sun::star::sheet::ActivationEvent every time the active sheet changes.

Parameter aListener
the component that is to be added as listener
See also
::com::sun::star::sheet::XActivationEventListener, ::com::sun::star::sheet::ActivationEvent
removeActivationEventListener
void
removeActivationEventListener( [in] ::com::sun::star::sheet::XActivationEventListener  aListener );

Description
removes a previously registered listener.
Parameter aListener
the component that is to be removed
Top of Page