| getMinimumSize() | ใช้คืนค่า minimum size ของ jcomponent ในรูปแบบของ dimension |
|---|
method:getMinimumSize ();
return type:Dimension
content:ใช้คืนค่า minimum size ของ jcomponent ในรูปแบบของ dimension
example:JButton button = new JButton ( "cancel" ); button.setBounds ( 0, 0 150, 30 ); Dimension minimum_size = button.getMinimumSize ();