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

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

interface XSpinField

Base Interface
com::sun::star::uno::XInterface

Description
gives access to the value of a spin field and makes it possible to register event listeners.


Methods' Summary

addSpinListener registers a spin listener.
removeSpinListener unregisters a spin listener.
up increases the value by one step.
down decreases the value by one step.
first sets the value to the previously set lower value.
last sets the value to the previously set upper value.
enableRepeat enables/disables automatic repeat mode.

Methods' Details

addSpinListener
 
[ oneway ] void
addSpinListener(
[ in ] com::sun::star::awt::XSpinListener l );

Description
registers a spin listener.
removeSpinListener
 
[ oneway ] void
removeSpinListener(
[ in ] com::sun::star::awt::XSpinListener l );

Description
unregisters a spin listener.
up
 
[ oneway ] void
up();
Description
increases the value by one step.
down
 
[ oneway ] void
down();
Description
decreases the value by one step.
first
 
[ oneway ] void
first();
Description
sets the value to the previously set lower value.
last
 
[ oneway ] void
last();
Description
sets the value to the previously set upper value.
enableRepeat
 
[ oneway ] void
enableRepeat(
[ in ] boolean bRepeat );

Description
enables/disables automatic repeat mode.

Top of Page