interface XDataTransferEventListener in module com::sun::star::io::

(Global Index)

Syntax

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

Description

is used to receive callbacks from an importer or exporter.

Method Summary

finished is called when an import or export process has finished.

cancelled is called when an import or export process has been cancelled.

Method Details



finished

Syntax

oneway void finished (
com::sun::star::io::DataTransferEvent aEvent );

Description

is called when an import or export process has finished.


cancelled

Syntax

oneway void cancelled (
com::sun::star::io::DataTransferEvent aEvent );

Description

is called when an import or export process has been cancelled.

Top of Page