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

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

interface XBoundComponent

Base Interface
com::sun::star::form::XUpdateBroadcaster

Description
makes it possible to connect a data-aware component to a data source.

It provides the possibility of committing its respective data to a data source. A commit will be performed by the environment. For example, suppose you have a data-bound control that is connected to a database field. Each time the control loses its focus, the model (component) of the control is triggered by the environment to store its value in the database field.

A commit may fail if an "UpdateListener" rejects the commitment of data.

See also
com::sun::star::form::XUpdateListener


Known Services which Export this Interface

com::sun::star::form::DataAwareControlModel is an abstract service for specialized FormControlModel s which are data aware and thus can be bound to a data source.
com::sun::star::form::control::GridControl describes a table-like control for displaying data.

Methods' Summary

commit triggers the update of the bound data source.

Methods' Details

commit
 
boolean
commit();
Description
triggers the update of the bound data source.
Returns
true when the commitment was successful, otherwise false .

Top of Page