Window.move

Asks the window manager to move window to the given position. Window managers are free to ignore this; most window managers ignore requests for initial window positions (instead using a user-defined placement algorithm) and honor requests after the window has already been shown. Note: the position is the position of the gravity-determined

  1. void move(double x, double y)
  2. void move(int x, int y)
    class Window
    void
    move
    (
    int x
    ,
    int y
    )

Parameters

x int

X coordinate to move window to

y int

Y coordinate to move window to

Meta