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

(Global Index)

Syntax

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

Description

notifies the specific listeners before an action on a component is performed.

In general a component which supports the XApproveActionBroadcaster interface implements the possibility of adding an XActionListener as well.

Method Summary

addApproveActionListener addApproveActionListener" adds the specified listener to receive the "approveAction" event.

removeApproveActionListener removes the specified listener.

Known Services Which Export this Interface

com::sun::star::form::control::CommandButton

com::sun::star::form::control::ImageButton

Method Details



addApproveActionListener

Syntax

oneway void addApproveActionListener (
com::sun::star::form::XApproveActionListener aListener );

Description

addApproveActionListener" adds the specified listener to receive the "approveAction" event.

Parameter aListener

the listener to append

See also

XApproveActionListener

removeApproveActionListener

Syntax

oneway void removeApproveActionListener (
com::sun::star::form::XApproveActionListener aListener );

Description

removes the specified listener.

Parameter aListener

the listener to remove

See also

XApproveActionListener
Top of Page