interface XFilter in module com::sun::star::document::

(Global Index)

Syntax

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

Description

interface to filter documents.

Method Summary

filter filters the document.

cancel cancels the loading process.

Known Services Which Export this Interface

com::sun::star::document::ExportFilter

com::sun::star::document::ImportFilter

com::sun::star::drawing::GraphicExportFilter

Method Details



filter

Syntax

boolean filter (
sequence< com::sun::star::beans::PropertyValue > aDescriptor );

Description

filters the document.

The given MediaDescriptor holds all neccessary information about the document. @attention Don't hold hard references to these descriptors. You must copy needed informations! Otherwise we couldn't destroy (for example) an existing input stream!


cancel

Syntax

void cancel ();

Description

cancels the loading process.

Top of Page