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

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

interface XReset

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

Description
provides functionality to reset components to their default values.


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::component::CheckBox specifies a check box extended by the required properties for HTML.
com::sun::star::form::component::ComboBox specifies a component which allows the input of text or selection of text from a list of text values.
com::sun::star::form::component::CurrencyField This service specifies the ControlModel for an edit field which contains a currency value.
com::sun::star::form::component::DataForm This service specifies a form which is connected to a database and displays the results of SQL queries. It provides the possiblity of adding new data records, modifying existing ones, or deleting them.
com::sun::star::form::component::DateField This service specifies the ControlModel for an edit field which contains a date value.
com::sun::star::form::component::FormattedField This service specifies the ControlModel of an edit field for single/multi-line text.
com::sun::star::form::component::GridControl This service specifies a ControlModel to represent data in a table.
com::sun::star::form::component::HTMLForm This service specifies the special form kind for HTML documents.
com::sun::star::form::component::ListBox This service specifies the ControlModel of a box which contains a list of strings to select from.
com::sun::star::form::component::NumericField This service specifies the ControlModel of an edit field for a numeric value.
com::sun::star::form::component::PatternField This service specifies the ControlModel of an edit field for strings which match a specified pattern.
com::sun::star::form::component::RadioButton is a radio button extended by the required properties for HTML.
com::sun::star::form::component::TextField This service specifies the ControlModel of an edit field for single/multi-line text.
com::sun::star::form::component::TimeField This service sepecifies the ControlModel of an edit field for a time value.

Methods' Summary

reset resets a component to its default value.
addResetListener adds the specified listener to receive the "approveReset" and "reset" events.
removeResetListener removes the specified listener.

Methods' Details

reset
 
[ oneway ] void
reset();
Description
resets a component to its default value.
addResetListener
 
[ oneway ] void
addResetListener(
[ in ] com::sun::star::form::XResetListener aListener );

Description
adds the specified listener to receive the "approveReset" and "reset" events.
Parameter aListener
the listener to add.
See also
com::sun::star::form::XResetListener
removeResetListener
 
[ oneway ] void
removeResetListener(
[ in ] com::sun::star::form::XResetListener aListener );

Description
removes the specified listener.
Parameter aListener
the listener to remove.
See also
com::sun::star::form::XResetListener

Top of Page