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

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

interface XFormController

Base Interface
com::sun::star::awt::XTabController

Description
provides functionality to control the activation of forms.

It should represent all controls which belong to a form.



Known Services which Export this Interface

com::sun::star::form::FormController specifies the view representation of a form.

Methods' Summary

getCurrentControl access to the current control may be< />.
addActivateListener adds the specified listener to receive events "formActivated" and "formDeactivated."
removeActivateListener removes the specified listener so it does not receive any events from the form controller.

Methods' Details

getCurrentControl
 
com::sun::star::awt::XControl
getCurrentControl();
Description
access to the current control may be< />.
Returns
the current control or< />.
addActivateListener
 
[ oneway ] void
addActivateListener(
[ in ] com::sun::star::form::XFormControllerListener l );

Description
adds the specified listener to receive events "formActivated" and "formDeactivated."
Parameter l
the listener to add.
See also
com::sun::star::form::XFormControllerListener
removeActivateListener
 
[ oneway ] void
removeActivateListener(
[ in ] com::sun::star::form::XFormControllerListener l );

Description
removes the specified listener so it does not receive any events from the form controller.
Parameter l
the listener to remove.
See also
com::sun::star::form::XFormControllerListener

Top of Page