Method setBounds(int x, int y, int width, int height)
Return type: void
Member of:
java.awt.Component
[
api documentation
] [
main menu
]
Examples of how the element is used
(one line per example):
[
add your own example
]
1
setBounds(100,100,400,250);
2
setBounds( 100, 100, 400, 400 );
3
setBounds(100,100,500,350);
4
setBounds(200,40, 200, 300);
5
setBounds(200, 40, 300, 400);
6
pane.setBounds(10, 10, 200, 280);
7
w.setBounds(0, 0, 100, 50);
8
_albumList.setBounds( 180, 50, 400, 220 );
9
component.setBounds(0, 0, 0, 0);
10
ivjPass1Panel.setBounds(30, 30, 50, 50);
11
iMessageFrame.setBounds(0, 0, 750, 250);
12
whereButton.setBounds(0,0,70, 40);
13
editCell.setBounds(0,0,1,1);
14
setBounds( 600, 100, 225, 300 );
15
f.setBounds(100, 100, 300, 300);
16
PropSheetCategory1.setBounds(12,33,276,307);
17
gotoLabel.setBounds(30, 25, 75, 17);
18
TabbedPane.setBounds(10, 10, 390, 250);
19
mListScroller1.setBounds(25, 65, 150, 200);
20
setBounds( x, y, 350, 80 );
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.