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

interface XImporter
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XImporter
::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::ImportFilter

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

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

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

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