| getSize() | ใช้คืนค่า ขนาดความกว้างและความสูง ของ component ในรูปแบบของ dimension |
|---|
method:getSize ();
return type:Dimension
content:ใช้คืนค่า ขนาดความกว้างและความสูง ของ component ในรูปแบบของ dimension
example:JButton button = new JButton ( "cancel" ); button.setBounds ( 0, 0, 100, 30 ); Dimension dimension = button.getSize ();