service ExportFilter in module com::sun::star::document::

(Global Index)

Syntax

service ExportFilter;

Description

filter for exports.

Exported Interfaces

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

Description

filter interface.

This interface is used to filter a document at saving time.


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

Description

set document for this filter.

The document can used as the target of a filter output.


com::sun::star::lang::XInitialization [ OPTIONAL ]

Description

support initialization of filter with its own configuration.

A filter must support readonly access to its own configuration, but readonly properties couldn't be set. That is the reason for this interface. All Anys of given sequence are from Type PropertyValue .


com::sun::star::beans::XPropertySet

Description

readonly access to filter configuration.

This interface supports readonly access to our internal configuration of this filter. The filter gets the configuration about XInitialization at creation by using the FilterFactory .


Property Summary

Type filter is registered for this type.

UIName localized name of filter to show at UI elements.

DocumentService service name which presents the document.

FilterService service name of this filter implementation.

Flags flags to describe the filter.

UserData additional information with private structure.

FileFormatVersion version number of file format.

TemplateName name of suitable template.

Property Details



Type

Syntax

[readonly] string Type;

Description

filter is registered for this type.


UIName

Syntax

[readonly] string UIName;

Description

localized name of filter to show at UI elements.


DocumentService

Syntax

[readonly] string DocumentService;

Description

service name which presents the document.


FilterService

Syntax

[readonly] string FilterService;

Description

service name of this filter implementation.


Flags

Syntax

[readonly] string Flags;

Description

flags to describe the filter.


UserData

Syntax

[readonly] string UserData;

Description

additional information with private structure.


FileFormatVersion

Syntax

[readonly] string FileFormatVersion;

Description

version number of file format.


TemplateName

Syntax

[readonly] string TemplateName;

Description

name of suitable template.

Top of Page