Java Swing Tutorial - Java Cursor W_RESIZE_CURSOR








Syntax

Cursor.W_RESIZE_CURSOR has the following syntax.

public static final int W_RESIZE_CURSOR

Example

In the following code shows how to use Cursor.W_RESIZE_CURSOR field.

import java.awt.Cursor;
/*from  ww w .j a  va2 s.co m*/
import javax.swing.JFrame;

public class Main {
  public static void main(String[] args) {
    JFrame aWindow = new JFrame();
    aWindow.setBounds(200, 200, 200, 200);
    aWindow.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    aWindow.setCursor(Cursor.getPredefinedCursor(Cursor.W_RESIZE_CURSOR));
    aWindow.setVisible(true);
  }
}