Top   Module   Use   Manual   Index 
 EXPORTING SERVICES | METHODS' SUMMARY | METHODS' DETAILS 

com :: sun :: star :: ucb ::

interface XPropertySetRegistry

Base Interface
com::sun::star::uno::XInterface

Description
A registry (storage medium) for persistent propertysets.
See also
XPersistentPropertySet


Known Services which Export this Interface

com::sun::star::ucb::PropertySetRegistry This service contains the interfaces to implement by objects returned by XPropertySetRegistryFactory::createRegistry .

Methods' Summary

openPropertySet creates a new or opens an existing propertyset in the registry.
removePropertySet removes a propertyset from the registry.

Methods' Details

openPropertySet
 
com::sun::star::ucb::XPersistentPropertySet
openPropertySet(
[ in ] string key,
[ in ] boolean create );

Description
creates a new or opens an existing propertyset in the registry.
Parameter key
The key to use for addressing the propertyset.
Parameter create
Indicates whether a new set shall be created in case there does not already exist one for the given key.
Returns
The propertyset.
removePropertySet
 
[ oneway ] void
removePropertySet(
[ in ] string key );

Description
removes a propertyset from the registry.
Parameter key
The key to use for addressing the propertyset.

Top of Page