interface XPropertySetRegistry in module com::sun::star::ucb::

(Global Index)

Syntax

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

Description

A registry (storage medium) for persistent propertysets.

See also

XPersistentPropertySet

Method Summary

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

removePropertySet removes a propertyset from the registry.

Known Services Which Export this Interface

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

Method Details



openPropertySet

Syntax

com::sun::star::ucb::XPersistentPropertySet openPropertySet (
string key,
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

Syntax

oneway void removePropertySet (
string key );

Description

removes a propertyset from the registry.

Parameter key

The key to use for addressing the propertyset.
Top of Page