Saturday, November 22, 2025
HomeLanguageswx.DisplaySize() function in wxPython

wx.DisplaySize() function in wxPython

In this article, we are going to learn about DisplaySize() function present in wxPython. DisplaySize() function is one of the parent function of wxPython. It returns the display size in pixels. Either of output pointers can be None if the caller is not interested in the corresponding value.

Syntax:
wx.DisplaySize()

Parameters:
DisplaySize() function requires no parameters.

Returns:
( width, height )

Return Type:
tuple

Code Example:




# importing the module
import wx
   
# definition of the Example class
class Example(wx.Frame):
   
    # instantiating the class
    def __init__(self, *args, **kwargs):
        super(Example, self).__init__(*args, **kwargs)
  
        self.InitUI()
  
    # method for creation of user interface
    def InitUI(self):
  
        # print the size of display
        print(wx.DisplaySize())
  
# definition of the main function
def main():
   
    # creating an App object
    app = wx.App()
   
    # creating an Example object
    ex = Example(None)
   
    # showing the Example object
    ex.Show()
   
    # running the App object
    app.MainLoop()
    
# driver code
if __name__ == '__main__':
    main()


Output:

(1536, 864)
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32407 POSTS0 COMMENTS
Milvus
97 POSTS0 COMMENTS
Nango Kala
6784 POSTS0 COMMENTS
Nicole Veronica
11931 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11999 POSTS0 COMMENTS
Shaida Kate Naidoo
6907 POSTS0 COMMENTS
Ted Musemwa
7168 POSTS0 COMMENTS
Thapelo Manthata
6863 POSTS0 COMMENTS
Umr Jansen
6848 POSTS0 COMMENTS