faqts : Computers : Programming : Languages : Python : Tkinter

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

10 of 10 people (100%) answered Yes
Recently 10 of 10 people (100%) answered Yes

Entry

Is there any way to read the maximum screen size available ???

Mar 22nd, 2006 22:13
Waldi Wolf, Binu Paul,


w.winfo_screenheight()
   Returns the height of the screen in pixels.

w.winfo_screenwidth()
   Returns the width of the screen in pixels.

w.winfo_screenmmheight()
   Returns the height of the screen in millimeters.

w.winfo_screenmmwidth()
   Returns the width of the screen in millimeters.


w is a widget