The java org.eclipse.swt.widgets.Combo.getSelectionIndex method is a part of the SWT (Standard Widget Toolkit) library in Java. It is used to retrieve the index of the currently selected item in a Combo widget. This method returns an integer value representing the index of the selected item in the dropdown list of the Combo. If no item is currently selected, it returns -1. The Combo widget is a user interface component that combines a text field and a drop-down list, allowing users to select an item from the list or enter a custom value in the text field.
Java Combo.getSelectionIndex - 30 examples found. These are the top rated real world Java examples of org.eclipse.swt.widgets.Combo.getSelectionIndex extracted from open source projects. You can rate examples to help us improve the quality of examples.