interface XStandaloneDocumentInfo in module com::sun::star::document::

(Global Index)

Syntax

interface XStandaloneDocumentInfo : com::sun::star::document::XDocumentInfo ;

Description

makes it possible to load document information from a resource specified by a URL and to store it into a resource also specified by a URL.

Only the document information part of the resource is transferred.

See also

DocumentInfo

See also

XDocumentInfo

See also

XPropertySet

See also

XFastPropertySet

Method Summary

loadFromURL This method loads the document information from a file referred by a URL.

storeIntoURL This method stores the document information into a file referred by a URL.

Known Services Which Export this Interface

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

Method Details



loadFromURL

Syntax

void loadFromURL (
string aURL )
raises ( com::sun::star::io::IOException );

Description

This method loads the document information from a file referred by a URL.

After an unsuccessful call the contents of the document information are undefined.

This method only works for storage file formats.


storeIntoURL

Syntax

void storeIntoURL (
string aURL )
raises ( com::sun::star::io::IOException );

Description

This method stores the document information into a file referred by a URL.

Only the document information part of the document is overwritten.

This method only works for storage file formats.

Top of Page