interface XModifyListener in module com::sun::star::util::

(Global Index)

Syntax

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

Description

makes it possible to receive events when a model object changes.

Method Summary

modified is called when something changes in the object.

Method Details



modified

Syntax

void modified (
com::sun::star::lang::EventObject aEvent );

Description

is called when something changes in the object.

Due to such an event, it may be necessary to update views or controllers.

The source of the event may be the content of the object to which the listener is registered.

Top of Page