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

interface XDocumentSubStorageSupplier
Description
through this interface documents can provide access to their substorages

A temporary interface to get access to documents substorages.

See also
DocumentInfo, StandaloneDocumentInfo

Methods' Summary
getDocumentSubStorage provides the access to a substorage with specified name  
getDocumentSubStoragesNames provides the list of substorages  
Methods' Details
getDocumentSubStorage
::com::sun::star::embed::XStorage
getDocumentSubStorage( [in] string  aStorageName,
[in] long  nMode );

Description
provides the access to a substorage with specified name
Parameter sStorageName
the name of requested substorage
Parameter nMode
a mode the storage should be opened in can take value from ::com::sun::star::embed::ElementModes
Returns
XStorage implementation that refers to specified substorage
getDocumentSubStoragesNames
sequence< string >
getDocumentSubStoragesNames()
raises( ::com::sun::star::io::IOException );

Description
provides the list of substorages
Returns
sequence of substorages names
Top of Page