Graphics: draw3DRect(int x, int y, int width, int height, boolean raised) : Graphics « java.awt « Java by API






Graphics: draw3DRect(int x, int y, int width, int height, boolean raised)

 
import java.awt.Color;
import java.awt.Graphics;

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

public class MainClass 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.getContentPane().add(new MainClass());

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(200, 200);
    frame.setVisible(true);
  }
}
           
         
  








Related examples in the same category

1.Graphics: clipRect(int x, int y, int width, int height)
2.Graphics: drawArc(int x, int y, int width, int height, int startAngle, int arcAngle)
3.Graphics: drawBytes(byte[] data,int offset,int length,int x,int y)
4.Graphics: drawChars(char[] data, int offset, int length, int x, int y)
5.Graphics: drawImage(Image img, int x, int y, ImageObserver ob)
6.Graphics: drawLine(int x1, int y1, int x2, int y2)
7.Graphics: drawRoundRect(int x,int y,int width,int height,int arcWidth,int arcHeight)
8.Graphics: drawOval(int x, int y, int width, int height)
9.Graphics: drawPolygon(int[] xPoints, int[] yPoints, int nPoints)
10.Graphics: drawPolyline(int[] xPoints,int[] yPoints,int nPoints)
11.Graphics: drawRect(int x, int y, int width, int height)
12.Graphics: drawString(String str, int x, int y)
13.Graphics: fillArc(int x, int y, int width, int height, int startAngle, int arcAngle)
14.Graphics: fill3DRect(int x, int y, int width, int height, boolean raised)
15.Graphics: fillOval(int x, int y, int width, int height)
16.Graphics: fillPolygon(int[] xPoints, int[] yPoints, int nPoints)
17.Graphics: fillRect(int x, int y, int width, int height)
18.Graphics: fillRoundRect(int x,int y,int width,int height,int arcWidth,int arcHeight)
19.Graphics: getFontMetrics()
20.Graphics: setClip(int x, int y, int width, int height)
21.Graphics: setColor(Color c)
22.Graphics: setPaintMode()
23.Graphics: setXORMode(Color cl)