Settings

From Apache OpenOffice Wiki
< Documentation‎ | DevGuide
Revision as of 13:05, 15 February 2008 by Ccornell (Talk | contribs)

Jump to: navigation, search



The com.sun.star.sheet.GlobalSheetSettings service contains settings that affect the whole spreadsheet application. It can be instantiated through the service manager. The properties are accessed using the com.sun.star.beans.XPropertySet interface.

GlobalSheetSettings

The following example gets the list of user-defined sort lists from the settings and displays them:

 // --- Get the user defined sort lists ---
 Object aSettings = xServiceManager.createInstance("com.sun.star.sheet.GlobalSheetSettings");
 com.sun.star.beans.XPropertySet xPropSet = (com.sun.star.beans.XPropertySet)
     UnoRuntime.queryInterface( com.sun.star.beans.XPropertySet.class, aSettings );
 String[] aEntries = (String[]) xPropSet.getPropertyValue("UserLists");
 System.out.println("User defined sort lists:");
 for (int i=0; i<aEntries.length; i++)
     System.out.println( aEntries[i] ); 
Content on this page is licensed under the Public Documentation License (PDL).
Personal tools