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

(Global Index)

Syntax

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

Description

is the listener interface for receiving "approveUpdate" and "updated" events.

Method Summary

addUpdateListener adds the specified listener to receive the events "approveUpdate" and "updated".

removeUpdateListener removes the specified listener.

Method Details



addUpdateListener

Syntax

oneway void addUpdateListener (
com::sun::star::form::XUpdateListener aListener );

Description

adds the specified listener to receive the events "approveUpdate" and "updated".

Parameter aListener

the listener to add.

See also

XUpdateListener

removeUpdateListener

Syntax

oneway void removeUpdateListener (
com::sun::star::form::XUpdateListener aListener );

Description

removes the specified listener.

Parameter aListener

the listener to remove.

See also

XUpdateListener
Top of Page