Java Swing Tutorial - Java Graphics .getClipBounds (Rectangle r)








Syntax

Graphics.getClipBounds(Rectangle r) has the following syntax.

public Rectangle getClipBounds(Rectangle r)

Example

In the following code shows how to use Graphics.getClipBounds(Rectangle r) method.

//  w w  w .  j  a v  a  2  s  .  com
import java.awt.Graphics;
import java.awt.Rectangle;

import javax.swing.JFrame;
import javax.swing.JPanel;

public class Main extends JPanel {

  public void paint(Graphics g) {
    super.paint(g);
    Rectangle r = g.getClipBounds();
    g.drawLine(0,0,r.width, r.height);

  }

  public static void main(String[] args) {
    JFrame frame = new JFrame();
    frame.add(new Main());
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setBounds(20,20, 500,500);
    frame.setVisible(true);
  }
}