Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: form ::

interface XChangeListener

Base Interface
com::sun::star::lang::XEventListener

Description
is the listener interface for receiving "changed" events.

A "changed" event should be fired if the context of the component has been changed. For example a text field in HTML fires a "changed" event if the text of the field has been modified and the field loses its focus.

The moment when the event occurs must be specified in the service description of the providing service.

See also
XChangeBroadcaster


Methods' Summary

changed is invoked when the context of a component has been changed.

Methods' Details

changed
 
[ oneway ] void
changed(
[ in ] com::sun::star::lang::EventObject rEvent );

Description
is invoked when the context of a component has been changed.
Parameter rEvent
the event happend.

Top of Page