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

interface XFilter
Developers Guide
OfficeDev - XML Based Filter Development - Introduction

Methods' Summary
filter filter the document.  
cancel cancel the process.  
Methods' Details
filter
boolean
filter( [in] sequence< ::com::sun::star::beans::PropertyValue >  aDescriptor );

Description
filter the document.

The given MediaDescriptor holds all necessary information about the document. Don't hold hard references to the descriptor items. You must copy needed information! Otherwise we couldn't destroy (for example) an existing input stream!

Parameter aDescriptor
the MediaDescriptor describing the respective document.
Returns
a boolean value indicating whether the filter operation was successful or not.
cancel
void
cancel();

Description
cancel the process.
Top of Page