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

interface XSubmit
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XSubmit
Description
provides functionality to submit data from a component.

Usually, this is used by ::com::sun::star::form::component::HTMLForm s.

See the HTML specification to learn about submitting forms.


Methods' Summary
submit submits the component's data to a specified target.
addSubmitListener adds the specified listener to receive the "approveSubmit" event.
removeSubmitListener removes the specified listener.
Methods' Details
submit
[oneway] void
submit(
 
[in] ::com::sun::star::awt::XControl
[in] ::com::sun::star::awt::MouseEvent
 
aControl,
aMouseEvt );

Description
submits the component's data to a specified target.
Parameter aControl
the control which's data is to be be submitted
Parameter aMouseEvt
the event which triggered the submit, if it was a mouse event
See also
::com::sun::star::awt::MouseEvent
addSubmitListener
[oneway] void
addSubmitListener(
 
[in] XSubmitListener
 
aListener );

Description
adds the specified listener to receive the "approveSubmit" event.
Parameter aListener
the listener to add.
See also
XSubmitListener
removeSubmitListener
[oneway] void
removeSubmitListener(
 
[in] XSubmitListener
 
aListener );

Description
removes the specified listener.
Parameter aListener
the listener to remove.
See also
XSubmitListener
Top of Page