:: com :: sun :: star :: util ::

interface XProtectable
Base Interfaces
::com::sun::star::uno::XInterface
  |  
  +--XProtectable
::com::sun::star::uno::XInterface
(referenced interface's summary:)
base interface of all UNO interfaces
Description
makes it possible to protect objects from modifications.
Developers Guide
Methods' Summary
protect activates the protection.  
unprotect removes the protection.  
isProtected  
Methods' Details
protect
void
protect( [in] string  aPassword );

Description
activates the protection.
unprotect
void
unprotect( [in] string  aPassword )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
removes the protection.
isProtected
boolean
isProtected();

Returns
the current state of protection.
Top of Page