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

interface XExporter
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XExporter
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
makes it possible to connect a document with an ::com::sun::star::document::ExportFilter

An ::com::sun::star::document::ExportFilter must know the source of his filter operation. To set this on a filter is part of this interface. Same mechanism exist for import too.

See also
::com::sun::star::document::ExportFilter
See also
::com::sun::star::document::ImportFilter
See also
::com::sun::star::document::XImporter

Methods' Summary
setSourceDocument sets the source document for the exporter  
Methods' Details
setSourceDocument
void
setSourceDocument( [in] ::com::sun::star::lang::XComponent  Document )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
sets the source document for the exporter
Parameter Document
the source document
Throws
com::sun::star::lang::IllegalArgumentException if Document does not support any service which is supported by this exporter
Top of Page