Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

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

interface XStandaloneDocumentInfo

Base Interface
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
com::sun::star::beans::XPropertySet
See also
com::sun::star::beans::XFastPropertySet


Known Services which Export this Interface

com::sun::star::document::StandaloneDocumentInfo This service grants access to document-specific information, like the author, creation date and user fields, directly from document files without loading the whole document.

Methods' 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.

Methods' Details

loadFromURL
 
void
loadFromURL(
[ in ] 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
 
void
storeIntoURL(
[ in ] 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