interface XConfigManager in module com::sun::star::frame::

(Global Index)

[ DEPRECATED ]

Syntax

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

Method Summary

addPropertyChangeListener add a listener to notify changes on "sKeyName"

removePropertyChangeListener remove a listener

substituteVariables substitute variables in "sText"

flush write data of INI-file to disk

Method Details



addPropertyChangeListener

Syntax

oneway void addPropertyChangeListener (
string sKeyName,
com::sun::star::beans::XPropertyChangeListener xListener );

Description

add a listener to notify changes on "sKeyName"

If sKeyName specifies a group of keys, the listener gets one notify for each subkey.


removePropertyChangeListener

Syntax

oneway void removePropertyChangeListener (
string sKeyName,
com::sun::star::beans::XPropertyChangeListener xListener );

Description

remove a listener


substituteVariables

Syntax

string substituteVariables (
string sText );

Description

substitute variables in "sText"

The value of "sText" is NOT changed.


flush

Syntax

oneway void flush ();

Description

write data of INI-file to disk

Top of Page