Java Swing Tutorial - Java Graphics.draw3DRect(int x, int y, int width, int height, boolean raised)








Syntax

Graphics.draw3DRect(int x, int y, int width, int height, boolean raised) has the following syntax.

public void draw3DRect(int x,  int y,  int width,  int height,  boolean raised)

Example

In the following code shows how to use Graphics.draw3DRect(int x, int y, int width, int height, boolean raised) method.

/* w  ww  .  j  a  v a2  s . c  om*/
import java.awt.Color;
import java.awt.Graphics;

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

public class Main extends JPanel {

  public void paint(Graphics g) {
    g.setColor (Color.gray);
    g.draw3DRect (25, 10, 50, 75, true);
    g.draw3DRect (25, 110, 50, 75, false);
    g.fill3DRect (100, 10, 50, 75, true);
    g.fill3DRect (100, 110, 50, 75, false);
  }

  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);
  }
}