Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "Scout/Concepts/ListBox"

m (Category changed)
(Replaced content with "The Scout documentation has been moved to https://eclipsescout.github.io/.")
 
(4 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{ScoutPage|cat=Component Model}}
+
The Scout documentation has been moved to https://eclipsescout.github.io/.
 
+
{{ScoutLink|Concepts|ValueField|Value field}} to propose multiple choices.
+
 
+
* implements: {{ScoutJavadoc|IListBox<T>|I}}
+
* extends: {{ScoutJavadoc|AbstractListBox<T>|C}}
+
 
+
== Description ==
+
{{note|TODO|Add a description}}
+
 
+
* Value is stored in a Array: <code>T[]</code>
+
* Like a {{ScoutLink|Concepts|SmartField|Smart field}} but for multiple Values.
+
* Use a {{ScoutLink|Concepts|CodeType|CodeType}} or a {{ScoutLink|Concepts|LookupCall|LookupCall}}
+
 
+
 
+
== Screenshot ==
+
[[Image:Scout_ListBox.png]]
+
 
+
== Properties ==
+
''Defined with {{ScoutLink|Concepts|GetConfigured Methods|getConfiguredXxxxxx()}} methods''.
+
 
+
See also the {{ScoutLink|Concepts|Field|Field}} and the {{ScoutLink|Concepts|ValueField|Value field}} pages for the properties that all fields have in common.
+
 
+
 
+
== Events ==
+
''Defined with {{ScoutLink|Concepts|Exec_Methods|execXxxxxx()}} methods''.
+
 
+
See also the {{ScoutLink|Concepts|Field|Field}} and the {{ScoutLink|Concepts|ValueField|Value field}} pages for the events that all fields have in common.
+
 
+
 
+
== See Also ==
+
* {{ScoutLink|Concepts|SmartField|Smart field}}
+
* {{ScoutLink|Concepts|ValueField|Value field}}
+
* {{ScoutLink|Concepts|Field|Field}}
+
* {{ScoutLink|Concepts|Form|Form}}
+

Latest revision as of 04:45, 14 March 2024

The Scout documentation has been moved to https://eclipsescout.github.io/.

Back to the top