Can you tell me how to get the size of the whole screen please?
I was looking for it in the wxPython docs for 30 minutes now, but I cannot find it.
Thanks,
Les
Can you tell me how to get the size of the whole screen please?
I was looking for it in the wxPython docs for 30 minutes now, but I cannot find it.
Thanks,
Les
Can you tell me how to get the size of the whole screen
please? I was looking for it in the wxPython docs for 30
minutes now, but I cannot find it.
screenDims = wx.ClientDisplayRect()
However, if you have multiple monitors, this only reports data for the
primary display.
David
David Woods wrote:
Can you tell me how to get the size of the whole screen please? I was looking for it in the wxPython docs for 30 minutes now, but I cannot find it.
screenDims = wx.ClientDisplayRect()However, if you have multiple monitors, this only reports data for the
primary display.
Thank you very much. At this point, I do not care about mulitple monitors.
Les