Java Swing Tutorial - Java Font.getItalicAngle()








Syntax

Font.getItalicAngle() has the following syntax.

public float getItalicAngle()

Example

In the following code shows how to use Font.getItalicAngle() method.

//from   ww  w  . j  av  a  2s  .  c om
import java.awt.Font;
import java.awt.Graphics;

import javax.swing.JFrame;

public class Main extends JFrame {

  public static void main(String[] a) {
    Main f = new Main();
    f.setSize(300, 300);
    f.setVisible(true);
  }

  public void paint(Graphics g) {
    Font f = g.getFont();
    
    System.out.println(f.getItalicAngle());

     

    g.drawString("java2s.com", 4, 16);
  }
}