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

(Global Index)

Syntax

interface XModifyBroadcaster : com::sun::star::uno::XInterface ;

Description

broadcasts each modification made on its data.

The modified object must post the modification events immediately after the modification is performed.

Method Summary

addModifyListener adds the specified listener to receive events "modified."

removeModifyListener removes the specified listener.

Known Services Which Export this Interface

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

com::sun::star::form::control::GridControl

Method Details



addModifyListener

Syntax

oneway void addModifyListener (
com::sun::star::util::XModifyListener aListener );

Description

adds the specified listener to receive events "modified."


removeModifyListener

Syntax

oneway void removeModifyListener (
com::sun::star::util::XModifyListener aListener );

Description

removes the specified listener.

Top of Page