interface XFilePickerNotifier in module com::sun::star::ui::dialogs::

(Global Index)

Syntax

interface XFilePickerNotifier : com::sun::star::uno::XInterface ;

Description

Interface to be implemented in order to support listener management.

Method Summary

addFilePickerListener Interface for clients to register as XFilePickerListener

removeFilePickerListener Interface for clients to unregister as XFilePickerListener.

Known Services Which Export this Interface

com::sun::star::ui::dialogs::FilePicker

Method Details



addFilePickerListener

Syntax

oneway void addFilePickerListener (
com::sun::star::ui::dialogs::XFilePickerListener xListener );

Description

Interface for clients to register as XFilePickerListener

Parameter xListener

The XFilePickerListener interface of the listener that wants to receive events of type FilePickerEvent .

Invalid interfaces or NULL values will be ignored.


removeFilePickerListener

Syntax

oneway void removeFilePickerListener (
com::sun::star::ui::dialogs::XFilePickerListener xListener );

Description

Interface for clients to unregister as XFilePickerListener.

Parameter xListener

The XFilePickerListener interface of the listener that wants to receive events of type FilePickerEvent .

Invalid interfaces or NULL values will be ignored.

Top of Page