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

interface XProtectable
Description
makes it possible to protect objects from modifications.
Developers Guide
Spreadsheets - Protecting Spreadsheets

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