Answers for "how to get current size of jframe"

0

how to get current size of jframe

Rectangle r = frame.getBounds();
h = r.height;
w = r.width;
Posted by: Guest on October-23-2021

Browse Popular Code Answers by Language