Difference between revisions of "Documentation/DevGuide/Basic/Getting the Dialog Model"

From Apache OpenOffice Wiki
Jump to: navigation, search
m (Robot: Changing Category:Documentation/Developers Guide/Basic and Dialogs)
m
 
(3 intermediate revisions by 3 users not shown)
Line 6: Line 6:
 
|NextPage=Documentation/DevGuide/Basic/Dialog as Control Container
 
|NextPage=Documentation/DevGuide/Basic/Dialog as Control Container
 
}}
 
}}
{{DISPLAYTITLE:Getting the Dialog Model}}
+
{{Documentation/DevGuideLanguages|Documentation/DevGuide/Basic/{{SUBPAGENAME}}}}
If a developer wants to modify any properties of a dialog or a control, it is necessary to have access to the dialog model. From a dialog, the model can be obtained by the getModel method of the <idl>com.sun.star.awt.XControl</idl> interface  
+
{{DISPLAYTITLE:Getting the Dialog Model}}
 
+
If a developer wants to modify any properties of a dialog or a control, it is necessary to have access to the dialog model. From a dialog, the model can be obtained by the <code>getModel</code> method of the <idl>com.sun.star.awt.XControl</idl> interface  
 +
<syntaxhighlight lang="oobas">
 
   oDialogModel = oDialog.getModel()
 
   oDialogModel = oDialog.getModel()
 
+
</syntaxhighlight>
 
or shorter
 
or shorter
 
+
<syntaxhighlight lang="oobas">
 
   oDialogModel = oDialog.Model
 
   oDialogModel = oDialog.Model
 
+
</syntaxhighlight>
 
{{PDL1}}
 
{{PDL1}}
  
 
[[Category:Documentation/Developer's Guide/Basic and Dialogs]]
 
[[Category:Documentation/Developer's Guide/Basic and Dialogs]]

Latest revision as of 21:18, 20 December 2020



If a developer wants to modify any properties of a dialog or a control, it is necessary to have access to the dialog model. From a dialog, the model can be obtained by the getModel method of the com.sun.star.awt.XControl interface

  oDialogModel = oDialog.getModel()

or shorter

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