| setFont() | ใช้กำหนด font ให้กับ component |
|---|
method:setFont ( object_font );
return type:void
content:ใช้กำหนด font ให้กับ component
example:JButton button = new JButton ( "cancel" ); Font font = new Font ( "TimesRoman", Font.BOLD, 12 ); button.setFont ( font );