Difference between revisions of "Documentation/DevGuide/Basic/Dialog Properties"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Robot: Changing Category:Documentation/Developers Guide/Basic and Dialogs)
m (FINAL VERSION FOR L10N)
Line 6: Line 6:
 
|NextPage=Documentation/DevGuide/Basic/Common Properties
 
|NextPage=Documentation/DevGuide/Basic/Common Properties
 
}}
 
}}
{{DISPLAYTITLE:Dialog Properties}}
+
{{Documentation/DevGuideLanguages|Documentation/DevGuide/Basic/{{SUBPAGENAME}}}}
 +
{{DISPLAYTITLE:Dialog Properties}}
 
It is possible to make some modifications before a dialog is shown. An example is to set the dialog title that is shown in the title bar of a dialog window. This can be achieved by setting the Title property at the dialog model through the <idl>com.sun.star.beans.XPropertySet</idl> interface:
 
It is possible to make some modifications before a dialog is shown. An example is to set the dialog title that is shown in the title bar of a dialog window. This can be achieved by setting the Title property at the dialog model through the <idl>com.sun.star.beans.XPropertySet</idl> interface:
  

Revision as of 12:35, 15 May 2009



It is possible to make some modifications before a dialog is shown. An example is to set the dialog title that is shown in the title bar of a dialog window. This can be achieved by setting the Title property at the dialog model through the com.sun.star.beans.XPropertySet interface:

 oDialogModel = oDialog.getModel()
 oDialogModel.setPropertyValue("Title", "My Title")

or shorter

 oDialog.Model.Title = "My Title"

Another approach is to use the setTitle method of the com.sun.star.awt.XDialog interface:

 oDialog.setTitle("My Title")

or

 oDialog.Title = "My Title"

Another property is the BackgroundColor property that sets a different background color for the dialog.

Content on this page is licensed under the Public Documentation License (PDL).
Personal tools
In other languages