look up: a pro
ava AWT Scrollbar The object of Scrollbar class is used to add horizontal and vertical scrollbar. Scrollbar is a GUI component allows us to see invisible number of rows and columns. AWT Scrollbar class declaration public class Scrollbar extends Component implements Adjustable, Accessible Java AWT Scrollbar Example import java.awt.*; class ScrollbarExample{ ScrollbarExample(){ Frame f= new Frame( "Scrollbar Example" ); Scrollbar s= new Scrollbar(); s.setBounds( 100 , 100 , 50 , 100 ); f.add(s); ...
Comments
Post a Comment