interface XChangeListener in module com::sun::star::form::

(Global Index)

Syntax

interface XChangeListener : 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

Method Summary

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

Method Details



changed

Syntax

oneway void changed (
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