Style | Description |
SWT.DROP_DOWN | Creates a Combo whose list "drops down." |
SWT.READ_ONLY | Disallows typing input. Only SWT.DROP_DOWN Combos can be read-only. |
SWT.SIMPLE | Display Input Box and List together. |
17.11.Combo | ||||
17.11.1. | Introducing Combo | |||
17.11.2. | Create a dropdown Combo | |||
17.11.3. | Create a read-only (non-editable) Combo | |||
17.11.4. | Create a 'simple' Combo | |||
17.11.5. | Getting selected item index from Combo | |||
17.11.6. | Retrieve the content text of the text field of a combo | |||
17.11.7. | Programmatically select an item from the list | |||
17.11.8. | Deselect an item | |||
17.11.9. | Getting Items | |||
17.11.10. | Setting Items | |||
17.11.11. | Finding Items | |||
17.11.12. | Adding Items | |||
17.11.13. | Add method appends an item to the end of the list | |||
17.11.14. | Removing Items | |||
17.11.15. | To remove multiple items | |||
17.11.16. | Removes the first found item with given text | |||
17.11.17. | Creating a Combo with Sorted List |