interface XProtectable in module com::sun::star::util::

(Global Index)

Syntax

interface XProtectable : com::sun::star::uno::XInterface ;

Description

makes it possible to protect objects from modifications.

Method Summary

protect activates the protection.

unprotect removes the protection.

isProtected

Method Details



protect

Syntax

void protect (
string aPassword );

Description

activates the protection.


unprotect

Syntax

void unprotect (
string aPassword )
raises ( com::sun::star::lang::IllegalArgumentException );

Description

removes the protection.


isProtected

Syntax

boolean isProtected ();

Returns

the current state of protection.
Top of Page