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

interface XSubmitListener
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-::com::sun::star::lang::XEventListener
    |
    +-XSubmitListener
Description
receives notifications about data beeing submitted.

The submission may be cancelled, so the listener has the possibility of verifying the data before submission.

See also
XSubmit

Methods' Summary
approveSubmit is invoked when a component is about to submit it's data.
Methods' Details
approveSubmit
boolean
approveSubmit(
 
[in] ::com::sun::star::lang::EventObject
 
rEvent );

Description
is invoked when a component is about to submit it's data.
Parameter aEvent
the event happend
Returns
true when submitting was approved, otherwise false .
Top of Page