Java Graphics Environment getWindowMaxBounds()

Here you can find the source of getWindowMaxBounds()

Description

get Window Max Bounds

License

LGPL

Declaration

public static Rectangle getWindowMaxBounds() 

Method Source Code

//package com.java2s;
//License from project: LGPL 

import java.awt.GraphicsEnvironment;

import java.awt.Rectangle;

public class Main {

    public static Rectangle getWindowMaxBounds() {
        GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
        return ge.getMaximumWindowBounds();
    }/*from   ww w .  j  a v a 2s. c  om*/
}

Related

  1. getDesktopSize()
  2. getLocalGraphicsEnvironment()
  3. getMaximumWindowBounds()
  4. getMaximumWindowDimension()
  5. getMenuShortCutKeyMask()
  6. isInteractive()