/*
Remove All Items From AWT Choice Or Combobox Example
This java example shows how to remove all items of a choice or
a combobox control using removeAll method of AWT Choice class.
*/
import java.applet.Applet;
import java.awt.Choice;
/*
<applet code="RemoveAllItemsExample" width=200 height=200>
</applet>
*/
public class RemoveAllItemsExample extends Applet{
Choice language = null;
public void init(){
//create choice or combobox
language = new Choice();
//add items to the choice
language.add("Java");
language.add("C++");
language.add("VB");
language.add("Perl");
//add choice or combobox
add(language);
/*
* To remove all items from a choice or combobox, use
* void removeAll()
* method of AWT Choice class.
*/
language.removeAll();
}
}
Example Output

Bookmark/Search this post with: