interface XSpinListener in module com::sun::star::awt::

(Global Index)

Syntax

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

Description

makes it possible to receive spin events from a component.

Method 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.

Method Details



up

Syntax

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

Description

is called when the spin field is spun up.


down

Syntax

oneway void down (
com::sun::star::awt::SpinEvent rEvent );

Description

is called when the spin field is spun down.


first

Syntax

oneway void first (
com::sun::star::awt::SpinEvent rEvent );

Description

is called when the spin field is set to the lower value.


last

Syntax

oneway void last (
com::sun::star::awt::SpinEvent rEvent );

Description

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

Top of Page