| setSize() | ใช้กำหนด ขนาด ของ component ( ใช้ในการเปลี่ยนขนาดของ component ) |
|---|
method:setSize ( width, height );
return type:void
content:ใช้กำหนด ขนาด ของ component ( ใช้ในการเปลี่ยนขนาดของ component )
example:JButton button = new JButton ( "cancel" ); button.setBounds ( 0, 0, 100, 30 ); button.setSize ( 120, 30 );