Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XFilter

Base Interface
com::sun::star::uno::XInterface

Description
interface to filter documents.


Known Services which Export this Interface

com::sun::star::document::ExportFilter filter for exports.
com::sun::star::document::ImportFilter filter for imports.
com::sun::star::drawing::GraphicExportFilter a component that supports this service lets you export pages, shapes, or groups of shapes from a DrawingDocument to a file in one of the file formats supported by the component.

Methods' Summary

filter filters the document.
cancel cancels the loading process.

Methods' Details

filter
 
boolean
filter(
[ in ] 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
 
void
cancel();
Description
cancels the loading process.

Top of Page