home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / CMCD0404.ISO / Software / Shareware / Comunicatii / advwebrank / awr.msi / disk1.cab / bsh_1.2b6.jar / bsh / commands / setFont.bsh < prev    next >
Encoding:
Text File  |  2002-05-26  |  455 b   |  20 lines

  1. /**
  2.     Change the point size of the font on the specified component, to ptsize.
  3.     This is just a convenience for playing with GUI components.
  4. */
  5.  
  6. bsh.help.setFont = "usage: setFont( Component comp, int ptsize )";
  7.  
  8. import java.awt.*;
  9.  
  10. Font setFont( Component comp, int ptsize ) {
  11.     font = comp.getFont();
  12.     f = font.getFamily();
  13.     s = font.getStyle();
  14.     font = new Font( f, s, ptsize );
  15.     comp.setFont( font );
  16.     comp.validate();
  17.     return font;
  18. }
  19.  
  20.