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

com :: sun :: star :: form ::

interface XBoundControl

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

Description
are related to data-bound components and provide the possibility of locking the input for data related controls.

The relation between bound controls and bound components follows the Model-View-Controller paradigm as used in Smalltalk.



Known Services which Export this Interface

com::sun::star::form::control::CheckBox describes a radio button usually used together with a CheckBox model.
com::sun::star::form::control::ComboBox describes a radio button usually used together with a ComboBox model.
com::sun::star::form::control::CurrencyField describes a radio button usually used together with a CurrencyField model.
com::sun::star::form::control::DateField describes a radio button usually used together with a DateField model.
com::sun::star::form::control::FormattedField describes a radio button usually used together with a FormattedField model.
com::sun::star::form::control::ImageControl describes a radio button usually used together with a DatabaseImageControl model.
com::sun::star::form::control::ListBox describes a radio button usually used together with a ListBox model.
com::sun::star::form::control::NumericField describes a radio button usually used together with a NumericField model.
com::sun::star::form::control::PatternField describes a radio button usually used together with a PatternField model.
com::sun::star::form::control::RadioButton describes a radio button usually used together with a RadioButton model.
com::sun::star::form::control::TextField describes a radio button usually used together with a TextField model.
com::sun::star::form::control::TimeField describes a radio button usually used together with a TimeField model.

Methods' Summary

getLock determines whether the input is currently locked or not.
setLock is used for altering the current lock state of the component.

Methods' Details

getLock
 
boolean
getLock();
Description
determines whether the input is currently locked or not.
Returns
true when it is currently locked, otherwise false .
setLock
 
[ oneway ] void
setLock(
[ in ] boolean bLock );

Description
is used for altering the current lock state of the component.
Parameter bLock
the current lock state.

Top of Page