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

(Global Index)

Syntax

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

Description

is the listener interface for receiving "confirmDelete" events posted by a database form.

"confirmDelete" must be posted by a component before a deletion is performed. You may use the event to write your own confirmation messages.

See also

DatabaseForm

Method Summary

confirmDelete is invoked when the current record of a database form will be deleted.

Method Details



confirmDelete

Syntax

boolean confirmDelete (
com::sun::star::sdb::RowChangeEvent aEvent );

Description

is invoked when the current record of a database form will be deleted.

Parameter aEvent

the event happend.

Returns

true when the row caan be deleted, otherwise false .
Top of Page