:: com :: sun :: star :: ui ::

interface XModuleUIConfigurationManager

Methods' Summary
isDefaultSettings determine if the settings of a user interface element is part of the default layer of the user interface configuration manager.  
getDefaultSettings retrieves the settings from the default layer of the user interface configuration manager if it has a default layer.  
Methods' Details
isDefaultSettings
boolean
isDefaultSettings( [in] string  ResourceURL )
raises( ::com::sun::star::lang::IllegalArgumentException );

Description
determine if the settings of a user interface element is part of the default layer of the user interface configuration manager.
Parameter ResourceURL
a resource URL which identifies the user interface element. A resource URL must meet the following syntax: "private:resource/$type/$name. It is only allowed to use ASCII characters for type and name.
Returns
true if settings have been found in the default layer, otherwise false.
getDefaultSettings
::com::sun::star::container::XIndexAccess
getDefaultSettings( [in] string  ResourceURL )
raises( ::com::sun::star::container::NoSuchElementException,
::com::sun::star::lang::IllegalArgumentException );

Description
retrieves the settings from the default layer of the user interface configuration manager if it has a default layer.
Parameter ResourceURL
a resource URL which identifies the user interface element. A resource URL must meet the following syntax: "private:resource/$type/$name. It is only allowed to use ASCII characters for type and name.
Returns
true if default settings have been found in the default layer, otherwise false.
Top of Page