Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: awt ::

interface XSpinListener

Base Interface
com::sun::star::lang::XEventListener

Description
makes it possible to receive spin events from a component.


Methods' Summary

up is called when the spin field is spun up.
down is called when the spin field is spun down.
first is called when the spin field is set to the lower value.
last is called when the spin field is set to the upper value.

Methods' Details

up
 
[ oneway ] void
up(
[ in ] com::sun::star::awt::SpinEvent rEvent );

Description
is called when the spin field is spun up.
down
 
[ oneway ] void
down(
[ in ] com::sun::star::awt::SpinEvent rEvent );

Description
is called when the spin field is spun down.
first
 
[ oneway ] void
first(
[ in ] com::sun::star::awt::SpinEvent rEvent );

Description
is called when the spin field is set to the lower value.
last
 
[ oneway ] void
last(
[ in ] com::sun::star::awt::SpinEvent rEvent );

Description
is called when the spin field is set to the upper value.

Top of Page