interface XBoundControl in module com::sun::star::form::

(Global Index)

Syntax

interface XBoundControl : 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.

Method Summary

getLock determines whether the input is currently locked or not.

setLock is used for altering the current lock state of the component.

Known Services Which Export this Interface

com::sun::star::form::control::CheckBox

com::sun::star::form::control::ComboBox

com::sun::star::form::control::CurrencyField

com::sun::star::form::control::DateField

com::sun::star::form::control::FormattedField

com::sun::star::form::control::ImageControl

com::sun::star::form::control::ListBox

com::sun::star::form::control::NumericField

com::sun::star::form::control::PatternField

com::sun::star::form::control::RadioButton

com::sun::star::form::control::TextField

com::sun::star::form::control::TimeField

Method Details



getLock

Syntax

boolean getLock ();

Description

determines whether the input is currently locked or not.

Returns

true when it is currently locked, otherwise false .

setLock

Syntax

oneway void setLock (
boolean bLock );

Description

is used for altering the current lock state of the component.

Parameter bLock

the current lock state.
Top of Page