void WindowSetPosition(int window, int x, int y)
WindowSetPosition
moves a given window to the specified coordinates. The (x, y) coordinates are the position of the upperleft corner of the window relative to the screen the window is being displayed on.
// The window is at (0,0)! int debug_window = WindowCreate(0, 0, 100, 100, "Debug"); // The window is now at (100,100)! WindowSetPosition(debug_window, 100, 100);
There are no talkbacks on this documentation page yet. Post the first?
Doc Nav |
Your docs |