interface XVetoableChangeListener in module com::sun::star::beans::

(Global Index)

Syntax

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

Description

is used to receive PropertyChangeEvent s whenever a "constrained" property is changed.

You can register an XVetoableChangeListener with a source object so as to be notified of any constrained property updates.

Method Summary

vetoableChange gets called when a constrained property is changed.

Method Details



vetoableChange

Syntax

void vetoableChange (
com::sun::star::beans::PropertyChangeEvent aEvent )
raises ( com::sun::star::beans::PropertyVetoException );

Description

gets called when a constrained property is changed.

Top of Page