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

interface XProtectable
Base Hierarchy
::com::sun::star::uno::XInterface
 |
 +-XProtectable
Description
makes it possible to protect objects from modifications.
Developers Guide
8.3.8 Spreadsheet Documents - Working with Spreadsheet Documents - 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 

raises(

 
aPassword ) 
::com::sun::star::lang::IllegalArgumentException );

Description
removes the protection.
isProtected
boolean
isProtected();
 
 

Returns
the current state of protection.
Top of Page