:: com :: sun :: star :: embed ::

interface XEncryptionProtectedSource
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XEncryptionProtectedSource
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Usage Restrictions
not published
Description
This interface allows to set a password for an object.

Methods' Summary
setEncryptionPassword sets a password for the object.  
removeEncryption removes encryption from the object.  
Methods' Details
setEncryptionPassword
void
setEncryptionPassword( [in] string  sPassword )
raises( ::com::sun::star::io::IOException );

Description
sets a password for the object.
Parameter sPassword
the new password
Throws
::com::sun::star::io::IOException in case password could not be set
removeEncryption
void
removeEncryption()
raises( ::com::sun::star::io::IOException );

Description
removes encryption from the object.
Throws
::com::sun::star::io::IOException in case encryption could not be removed
Top of Page