interface XSubmitListener in module com::sun::star::form::

(Global Index)

Syntax

interface XSubmitListener : com::sun::star::lang::XEventListener ;

Description

receives the "approveSubmit" event.

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

See also

XSubmit

Method Summary

approveSubmit is invoked when a component is submitted.

Method Details



approveSubmit

Syntax

boolean approveSubmit (
com::sun::star::lang::EventObject rEvent );

Description

is invoked when a component is submitted.

Parameter aEvent

the event happend.

Returns

true when submitting was approved, otherwise false .
Top of Page