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

interface XPropertySetRegistry
Description
A registry (storage medium) for persistent property sets.
See also
XPersistentPropertySet

Methods' Summary
openPropertySet creates a new or opens an existing property set in the registry.  
removePropertySet removes a property set from the registry.  
Methods' Details
openPropertySet
XPersistentPropertySet
openPropertySet( [in] string  key,
[in] boolean  create );

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

Description
removes a property set from the registry.
Parameter key
The key to use for addressing the property set.
Top of Page